using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// /// [SugarTable("Document_LayInfo")] public partial class Document_LayInfo { public Document_LayInfo(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int LayId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LayType {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LayName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LayProvince {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? StartTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? EndTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LayPath {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LayPathVersionNo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? LayPathSize {get;set;} /// /// Desc: /// Default:1 /// Nullable:False /// public int IsSys {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:1 /// Nullable:False /// public int? TenantID { get; set; } } }