using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.BasicData.Entities { /// ///参数配置表 /// [SugarTable("bas_parameter")] public partial class BasParameter { public BasParameter(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:所属组织 /// Default:NULL::character varying /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:系统:WMS、MES /// Default: /// Nullable:False /// public string system_type {get;set;} = string.Empty; /// /// Desc:是否为静态变量,静态不显示 /// Default: /// Nullable:False /// public int is_static {get;set;} /// /// Desc:参数类型 /// Default: /// Nullable:False /// public string parameter_type {get;set;} = string.Empty; /// /// Desc:科目(模块) /// Default: /// Nullable:False /// public string section {get;set;} = string.Empty; /// /// Desc:参数键 /// Default: /// Nullable:False /// public string key {get;set;} = string.Empty; /// /// Desc:参数值 /// Default: /// Nullable:False /// public string value {get;set;} = string.Empty; /// /// Desc:默认参数值(参考值,不能修改) /// Default:NULL::character varying /// Nullable:True /// public string? defaultvalue {get;set;} /// /// Desc:备注 /// Default:NULL::character varying /// Nullable:True /// public string? remark {get;set;} /// /// Desc:时间戳(用于并发处理) /// Default:NULL::character varying /// Nullable:True /// public string? timestamp {get;set;} /// /// Desc:创建用户 /// Default:NULL::character varying /// Nullable:True /// public string? create_id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:False /// public DateTime create_time {get;set;} /// /// Desc:修改用户 /// Default:NULL::character varying /// Nullable:True /// public string? modify_id {get;set;} /// /// Desc:修改时间 /// Default: /// Nullable:True /// public DateTime? modify_time {get;set;} /// /// Desc:扩展字段 /// Default: /// Nullable:True /// public string? extras {get;set;} } }