using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// /// [SugarTable("Document_DelegatePersonInfo")] public partial class Document_DelegatePersonInfo { public Document_DelegatePersonInfo(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int DelegateId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string DelegateName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WorkUnit {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Job {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string Phone {get;set;} /// /// Desc: /// Default:1 /// Nullable:False /// public int IsUse {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CardPositive {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string CardPositiveVersionNo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? CardPositiveSize {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LastUpdateName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? AdviseFlag {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? UserId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? TenantID { get; set; } } }