using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// prd_process_parameterdata /// [SugarTable("prd_process_parameterdata")] public partial class PrdProcessParameterdata : BaseEntity { public PrdProcessParameterdata() { id = SnowflakeIdHelper.NextId(); } /// /// 租户ID /// public string? tenant_id { get; set; } /// /// 所属组织 /// public string? org_id { get; set; } /// /// 产品序列号 /// public string r_card { get; set; } = string.Empty; /// /// 工单代码 /// public string mo_code { get; set; } = string.Empty; /// /// 产品类型代码 /// public string category_code { get; set; } = string.Empty; /// /// 产品代码 /// public string item_code { get; set; } = string.Empty; /// /// 工作天 /// public int shift_day { get; set; } /// /// 工序代码 /// public string process_code { get; set; } = string.Empty; /// /// 工艺参数代码 /// public string parameter_code { get; set; } = string.Empty; /// /// 工艺参数名称 /// public string parameter_name { get; set; } = string.Empty; /// /// 工艺参数类型 /// public string parameter_type { get; set; } = string.Empty; /// /// 单位 /// public string? unit { get; set; } /// /// 下限值 /// public decimal? limit_low { get; set; } /// /// 上限值 /// public decimal? limit_high { get; set; } /// /// 标准值 /// public decimal? standard { get; set; } /// /// 实际值 /// public decimal? actual { get; set; } /// /// 结果 /// public int? result { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳 /// public string? time_stamp { get; set; } /// /// 扩展字段 /// public string? extras { get; set; } /// /// 创建用户 /// public string? create_id { get; set; } /// /// 创建时间 /// public DateTime? create_time { get; set; } /// /// 修改用户 /// public string? modify_id { get; set; } /// /// 修改时间 /// public DateTime? modify_time { get; set; } }