using System; using System.Linq; using System.Text; using SqlSugar; namespace Entity.Sugar { /// /// /// [SugarTable("SETB_SAL_Question")] public partial class SETB_SAL_Question : ModelContext { public SETB_SAL_Question() { } /// /// Desc: /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey = true)] public string QuestionID { get; set; } public const string CN_QUESTIONID = "QuestionID"; /// /// Desc: /// Default: /// Nullable:False /// public string QuestionName { get; set; } public const string CN_QUESTIONNAME = "QuestionName"; /// /// Desc: /// Default: /// Nullable:True /// public string AnswerType { get; set; } public const string CN_ANSWERTYPE = "AnswerType"; /// /// Desc: /// Default: /// Nullable:True /// public string SubCategoryID { get; set; } public const string CN_SUBCATEGORYID = "SubCategoryID"; /// /// Desc: /// Default: /// Nullable:True /// public string QuestionType { get; set; } public const string CN_QUESTIONTYPE = "QuestionType"; /// /// Desc:Y摸Τ N摸礚 /// Default: /// Nullable:True /// public string Effective { get; set; } public const string CN_EFFECTIVE = "Effective"; /// /// Desc: /// Default: /// Nullable:True /// public string CreateUser { get; set; } public const string CN_CREATEUSER = "CreateUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? CreateDate { get; set; } public const string CN_CREATEDATE = "CreateDate"; /// /// Desc: /// Default: /// Nullable:True /// public string ModifyUser { get; set; } public const string CN_MODIFYUSER = "ModifyUser"; /// /// Desc: /// Default: /// Nullable:True /// public DateTime? ModifyDate { get; set; } public const string CN_MODIFYDATE = "ModifyDate"; /// /// Desc:Y埃 Nゼ埃 /// Default:N /// Nullable:True /// public string DelStatus { get; set; } public const string CN_DELSTATUS = "DelStatus"; /// /// Desc: /// Default: /// Nullable:False /// public string OrgID { get; set; } public const string CN_ORGID = "OrgID"; } }