using System; using System.Linq; using System.Text; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities { /// ///prd_process_parameterdata /// [SugarTable("prd_process_parameterdata")] public partial class PrdProcessParameterdata { public PrdProcessParameterdata(){ } /// /// Desc:编号 /// Default: /// Nullable:False /// [SugarColumn(IsPrimaryKey=true)] public string id {get;set;} = SnowflakeIdHelper.NextId(); /// /// Desc:租户ID /// Default:NULL::character varying /// Nullable:True /// public string? tenant_id {get;set;} /// /// Desc:所属组织 /// Default:NULL::character varying /// Nullable:True /// public string? org_id {get;set;} /// /// Desc:产品序列号 /// Default: /// Nullable:False /// public string r_card {get;set;} = string.Empty; /// /// Desc:工单代码 /// Default: /// Nullable:False /// public string mo_code {get;set;} = string.Empty; /// /// Desc:产品类型代码 /// Default: /// Nullable:False /// public string category_code {get;set;} = string.Empty; /// /// Desc:产品代码 /// Default: /// Nullable:False /// public string item_code {get;set;} = string.Empty; /// /// Desc:工作天 /// Default: /// Nullable:False /// public int shift_day {get;set;} /// /// Desc:工序代码 /// Default: /// Nullable:False /// public string process_code {get;set;} = string.Empty; /// /// Desc:工艺参数代码 /// Default: /// Nullable:False /// public string parameter_code {get;set;} = string.Empty; /// /// Desc:工艺参数名称 /// Default: /// Nullable:False /// public string parameter_name {get;set;} = string.Empty; /// /// Desc:工艺参数类型 /// Default: /// Nullable:False /// public string parameter_type {get;set;} = string.Empty; /// /// Desc:单位 /// Default:NULL::character varying /// Nullable:True /// public string? unit {get;set;} /// /// Desc:下限值 /// Default: /// Nullable:True /// public decimal? limit_low {get;set;} /// /// Desc:上限值 /// Default: /// Nullable:True /// public decimal? limit_high {get;set;} /// /// Desc:标准值 /// Default: /// Nullable:True /// public decimal? standard {get;set;} /// /// Desc:实际值 /// Default: /// Nullable:True /// public decimal? actual {get;set;} /// /// Desc:结果 /// Default: /// Nullable:True /// public int? result {get;set;} /// /// Desc:备注 /// Default:NULL::character varying /// Nullable:True /// public string? remark {get;set;} /// /// Desc:时间戳 /// Default:NULL::character varying /// Nullable:True /// public string? time_stamp {get;set;} /// /// Desc:扩展字段 /// Default: /// Nullable:True /// public string? extras {get;set;} /// /// Desc:创建用户 /// Default:NULL::character varying /// Nullable:True /// public string? create_id {get;set;} /// /// Desc:创建时间 /// Default: /// Nullable:True /// 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;} } }