using JNPF.Common.Contracts; using JNPF.Common.Security; using SqlSugar; namespace Tnb.ProductionMgr.Entities; /// /// 生产测试数据临时记录 /// [SugarTable("prd_testdata_temporary")] public partial class PrdTestdataTemporary : BaseEntity { public PrdTestdataTemporary() { id = SnowflakeIdHelper.NextId(); } /// /// 所属组织 /// 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 check_type_code { get; set; } = string.Empty; /// /// 检验类型名称 /// public string check_type_name { get; set; } = string.Empty; /// /// 检验项目代码 /// public string check_item_code { get; set; } = string.Empty; /// /// 检验项目名称 /// public string check_item_name { get; set; } = string.Empty; /// /// Value:值检验项/Result:结果检验项 /// public string result_type { get; set; } = string.Empty; /// /// 判断类型: 1:Auto自动判断 2:Manual人工判断 /// public int judge_type { get; set; } /// /// 单位 /// public string? unit { get; set; } /// /// 下限值 /// public decimal? limit_low { get; set; } /// /// 上限值 /// public decimal? limit_high { get; set; } /// /// 标准值 /// public decimal? standard { get; set; } /// /// 实际值 /// public string? actual { get; set; } /// /// 结果 /// public int result { get; set; } /// /// 备注 /// public string? remark { get; set; } /// /// 时间戳 /// public string? time_stamp { 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; } /// /// 扩展字段 /// public string? extras { get; set; } }