SACenter/SA.Entity/zxdcrm_Models/SoftUserGetcheck.cs

92 lines
2.4 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace SA.Entity.zxdcrm_Models
{
///<summary>
///
///</summary>
[SugarTable("soft_user_getcheck")]
public partial class SoftUserGetcheck
{
public SoftUserGetcheck(){
}
/// <summary>
/// Desc:
/// Default:
/// Nullable:False
/// </summary>
[SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")]
public int Id {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="resid")]
public string? Resid {get;set;}
/// <summary>
/// Desc:多个用“,”号隔开
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="softusername")]
public string? Softusername {get;set;}
/// <summary>
/// Desc:
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="ctime")]
public DateTime? Ctime {get;set;}
/// <summary>
/// Desc:200:审核通过 100不通过
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="status")]
public int? Status {get;set;}
/// <summary>
/// Desc:审核明细
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="content")]
public string? Content {get;set;}
/// <summary>
/// Desc:事业部编码
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="deptcode")]
public string? Deptcode {get;set;}
/// <summary>
/// Desc:申请人
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="eid")]
public int? Eid {get;set;}
/// <summary>
/// Desc:源事业部
/// Default:
/// Nullable:True
/// </summary>
[SugarColumn(ColumnName="source")]
public string? Source {get;set;}
}
}