using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("exam_paper")] public partial class ExamPaper { public ExamPaper(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="title")] public string? Title {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="type")] public int? Type {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="typename")] public string? Typename {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="totalscore")] public int? Totalscore {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="eid")] public int? Eid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="score")] public int? Score {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="starttime")] public DateTime? Starttime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="endtime")] public DateTime? Endtime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="timelength")] public int? Timelength {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="handtime")] public DateTime? Handtime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="usetime")] public int? Usetime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="appid")] public string? Appid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="appuserid")] public string? Appuserid {get;set;} } }