using System; using System.Linq; using System.Text; using SqlSugar; namespace DocumentServiceAPI.Model.cyDocumentModel { /// /// /// [SugarTable("Document_PerformanceInfo")] public partial class Document_PerformanceInfo { public Document_PerformanceInfo(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true)] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public int? EmployeeId {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string ProjectName {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string WorkItem {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public decimal? Price {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public DateTime? WorkTime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// public string EmployeeName {get;set;} } }