using SqlSugar; namespace GS.QC.Models; /// /// 检验项目从表 /// [SugarTable("MES_QM_CHECKITEM_DT")] public class MesQmCheckitemDt { /// /// 默认值: (newid()) /// [SugarColumn(ColumnName = "guid", IsPrimaryKey = true)] public Guid? Guid { get; set; } /// /// 创建人 /// [SugarColumn(ColumnName = "CREATE_BY")] public string CreateBy { get; set; } /// /// 创建时间 /// [SugarColumn(ColumnName = "CREATE_DATE")] public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// [SugarColumn(ColumnName = "LASTUPDATE_BY")] public string LastupdateBy { get; set; } /// /// 最后更新时间 /// [SugarColumn(ColumnName = "LASTUPDATE_DATE")] public DateTime? LastupdateDate { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "MEMO")] public string Memo { get; set; } /// /// 物料产品编码 /// [SugarColumn(ColumnName = "ITEM_NO")] public string ItemNo { get; set; } /// /// 顺序 /// [SugarColumn(ColumnName = "FORDER")] public long? Forder { get; set; } /// /// 上公差 /// [SugarColumn(ColumnName = "FUP_ALLOW")] public string FupAllow { get; set; } /// /// 检验项目 /// [SugarColumn(ColumnName = "FCHECK_ITEM")] public string FcheckItem { get; set; } /// /// 特殊特性类别 /// [SugarColumn(ColumnName = "FSPEC_TYPE")] public string FspecType { get; set; } /// /// 备用 /// [SugarColumn(ColumnName = "WORKSHOP_CENTER_CODE")] public long? WorkshopCenterCode { get; set; } /// /// 工序 /// [SugarColumn(ColumnName = "PROC_NO")] public string ProcNo { get; set; } /// /// 检验水准编码 /// [SugarColumn(ColumnName = "SAMPLE_SIZE_NO")] public string SampleSizeNo { get; set; } /// /// 检验工具 /// [SugarColumn(ColumnName = "FCHECK_TOOL")] public string FcheckTool { get; set; } /// /// 下公差 /// [SugarColumn(ColumnName = "FDOWN_ALLOW")] public string FdownAllow { get; set; } /// /// 检验水平 /// [SugarColumn(ColumnName = "FCHECK_LEVEL")] public string FcheckLevel { get; set; } /// /// 标准值 /// [SugarColumn(ColumnName = "FSTAND")] public string Fstand { get; set; } /// /// 接收水平 /// [SugarColumn(ColumnName = "FAC_LEVEL")] public string FacLevel { get; set; } /// /// 备用 /// [SugarColumn(ColumnName = "FEATU_PROC")] public string FeatuProc { get; set; } /// /// 备用 /// [SugarColumn(ColumnName = "FEATU_PROD")] public string FeatuProd { get; set; } /// /// 备用 /// [SugarColumn(ColumnName = "AQL1_ID")] public string Aql1Id { get; set; } /// /// 备用 /// [SugarColumn(ColumnName = "FQA_TYPE")] public string FqaType { get; set; } /// /// 是否档位 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "ISDANWEI")] public bool? Isdanwei { get; set; } /// /// 默认用于在库重检 /// 默认值: ((1)) /// [SugarColumn(ColumnName = "FTYPE")] public long? Ftype { get; set; } /// /// 修改/ 新增状态 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "EDIT_STATUS")] public bool? EditStatus { get; set; } /// /// 抽检数量 /// [SugarColumn(ColumnName = "CHECK_QTY")] public long? CheckQty { get; set; } /// /// 允收数量 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "FAC_QTY")] public long? FacQty { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string Factory { get; set; } /// /// 频次 /// [SugarColumn(ColumnName = "FREQUENCY")] public string Frequency { get; set; } /// /// 规格要求 /// [SugarColumn(ColumnName = "FSPEC_REQU")] public string FspecRequ { get; set; } /// /// 项目类别 /// [SugarColumn(ColumnName = "FCHECK_TYPE")] public string FcheckType { get; set; } /// /// 单位 /// [SugarColumn(ColumnName = "FUNIT")] public string Funit { get; set; } /// /// 报表选择 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "REPORF_CHECK")] public bool? ReporfCheck { get; set; } /// /// 特定修改 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "GIVEN_MODIFY")] public bool? GivenModify { get; set; } /// /// UCL_X设定值 /// [SugarColumn(ColumnName = "FUCL")] public decimal? Fucl { get; set; } /// /// LCL_X设定值 /// [SugarColumn(ColumnName = "FLCL")] public decimal? Flcl { get; set; } /// /// UCL_R设定值 /// [SugarColumn(ColumnName = "FRUCL")] public decimal? Frucl { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName = "ITEM_ID")] public long? ItemId { get; set; } /// /// 样品数量 /// [SugarColumn(ColumnName = "ypsl")] public decimal? ypsl { get; set; } /// /// 工位 /// [SugarColumn(ColumnName = "stationName")] public string stationName { get; set; } /// /// 是否认证 /// [SugarColumn(ColumnName = "IS_RZXX")] public bool? isRzxx { get; set; } /// /// [SugarColumn(ColumnName = "pid")] public Guid? Pid { get; set; } [SugarColumn(IsIgnore = true)] public string sampleSizeName { get; set; } }