using System;
using System.Linq;
using System.Text;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.ProductionMgr.Entities
{
///
///生产测试数据临时记录
///
[SugarTable("prd_testdata_temporary")]
public partial class PrdTestdataTemporary
{
public PrdTestdataTemporary(){
}
///
/// 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:产品序列号
/// 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 check_type_code {get;set;} = string.Empty;
///
/// Desc:检验类型名称
/// Default:
/// Nullable:False
///
public string check_type_name {get;set;} = string.Empty;
///
/// Desc:检验项目代码
/// Default:
/// Nullable:False
///
public string check_item_code {get;set;} = string.Empty;
///
/// Desc:检验项目名称
/// Default:
/// Nullable:False
///
public string check_item_name {get;set;} = string.Empty;
///
/// Desc:Value:值检验项/Result:结果检验项
/// Default:
/// Nullable:False
///
public string result_type {get;set;} = string.Empty;
///
/// Desc:判断类型: 1:Auto自动判断 2:Manual人工判断
/// Default:
/// Nullable:False
///
public int judge_type {get;set;}
///
/// 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:NULL::character varying
/// Nullable:True
///
public string? actual {get;set;}
///
/// Desc:结果
/// Default:
/// Nullable:False
///
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: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;}
///
/// Desc:扩展字段
/// Default:
/// Nullable:True
///
public string? extras {get;set;}
}
}