using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// /// /// [SugarTable("exam_itembank")] public partial class ExamItembank { public ExamItembank(){ } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=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="ctime")] public DateTime? Ctime {get;set;} /// /// Desc: /// Default: /// Nullable:True /// [SugarColumn(ColumnName="createuser")] public int? Createuser {get;set;} } }