using JNPF.Common.Contracts;
using JNPF.Common.Security;
using SqlSugar;
namespace Tnb.QcMgr.Entities
{
///
/// spc主表
///
[SugarTable("qc_spc_h")]
public partial class QcSpcH : BaseEntity
{
public QcSpcH()
{
id = SnowflakeIdHelper.NextId();
}
///
/// 编号
///
public string? code { get; set; }
///
/// 检测项目
///
public string? checkproject { get; set; }
///
/// 检测类别
///
public string? checktype { get; set; }
///
/// 图类
///
public string? graphtype { get; set; }
///
/// 样本容量
///
public int? samplesize { get; set; }
///
/// 小数位数
///
public int? decimalplace { get; set; }
///
/// 产品名称
///
public string? productname { get; set; }
///
/// 任务单编号
///
public string? taskcode { get; set; }
///
/// 批次
///
public string? batch { get; set; }
///
/// 产线
///
public string? productline { get; set; }
///
/// 班次
///
public string? work { get; set; }
///
/// 设备
///
public string? device { get; set; }
///
/// 工序
///
public string? process { get; set; }
///
/// 供应商
///
public string? supplier { get; set; }
///
/// 客户
///
public string? custom { get; set; }
///
/// 规格上限
///
public float? uplimit { get; set; }
///
/// 目标值
///
public float? target { get; set; }
///
/// 规格下限
///
public float? lowerlimit { get; set; }
///
/// 子组容量
///
public int? subcapacity { get; set; }
///
/// 判异规则
///
public string? rule { 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? org_id { get; set; }
///
/// 流程任务Id
///
public string? f_flowtaskid { get; set; }
///
/// 流程引擎Id
///
public string? f_flowid { get; set; }
}
}