using System; using System.Linq; using System.Text; using SqlSugar; namespace SA.Entity.zxdcrm_Models { /// ///系统参数配置 /// [SugarTable("bas_parameter")] public partial class BasParameter { public BasParameter(){ } /// /// Desc:参数代码 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string PARAKEY {get;set;} /// /// Desc:分组id /// Default: /// Nullable:True /// public string? GROUPID {get;set;} /// /// Desc:参数值 /// Default: /// Nullable:True /// public string? PARAVALUE {get;set;} /// /// Desc:参数类型 /// Default: /// Nullable:True /// public string? PARATYPE {get;set;} /// /// Desc:描述 /// Default: /// Nullable:True /// public string? REMARK {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// public DateTime? CTIME {get;set;} /// /// Desc:创建人 /// Default: /// Nullable:True /// public int? CREATEUSER {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? UTIME {get;set;} /// /// Desc:修改人 /// Default: /// Nullable:True /// public int? UPDATEUSER {get;set;} /// /// Desc:编辑页面 /// Default: /// Nullable:True /// public string? EDITFORM {get;set;} /// /// Desc:参数名 /// Default: /// Nullable:True /// public string? PARANAME {get;set;} /// /// Desc:营业部代码 /// Default: /// Nullable:True /// public string? DEPTCDOE {get;set;} } }