using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// /// [SugarTable("Document_ProjectOppugnInfo")] public partial class Document_ProjectOppugnInfo { public Document_ProjectOppugnInfo(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int ID {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int ProjectId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string DelegatePerson {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string OppugnUnit {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string OppugnContent {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? CopyCount {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FilePath {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string FilePathVersionNo {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? FilePathSize {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? LastUpdateTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string LastUpdateName {get;set;} /// /// Desc: /// Default: /// Nullable:False /// public int UnitId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? OppugnFlag {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? UserId {get;set;} } }