using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("exam_papersubject")] public partial class ExamPapersubject { public ExamPapersubject(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true,IsIdentity=true,ColumnName="id")] public int Id {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="paperid")] public int? Paperid {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="papertype")] public int? Papertype {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="subjecttype")] public int? Subjecttype {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="subject")] public string? Subject {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="options")] public string? Options {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rightanswer")] public string? Rightanswer {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="remark")] public string? Remark {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="answer")] public string? Answer {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="rn")] public int? Rn {get;set;} } }