using SqlSugar; namespace PadApplication.Entites.DbModels; /// /// 注塑首检巡检资料明细 /// [SugarTable("MES_QM_CHECKITEMS_DT2")] public class MesQmCheckitemsDt2 { /// /// ID(SEQ_QM_ID) /// [SugarColumn(ColumnName = "ID")] public decimal Id { 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 decimal? 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 decimal? 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; } /// /// 是否档位 /// [SugarColumn(ColumnName = "ISDANWEI")] public decimal? Isdanwei { get; set; } /// /// 默认用于在库重检 /// [SugarColumn(ColumnName = "FTYPE")] public decimal? Ftype { get; set; } /// /// 修改/新增状态 /// [SugarColumn(ColumnName = "EDIT_STATUS")] public short? EditStatus { get; set; } /// /// 抽检数量 /// [SugarColumn(ColumnName = "CHECK_QTY")] public decimal? CheckQty { get; set; } /// /// 允收数量 /// [SugarColumn(ColumnName = "FAC_QTY")] public decimal? FacQty { get; set; } /// /// 主表ID /// [SugarColumn(ColumnName = "PID")] public decimal? Pid { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string Factory { get; set; } /// /// [SugarColumn(ColumnName = "F_TYPE")] public string FType { 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 = "ISXJ")] public decimal? Isxj { get; set; } /// /// 部件名称 /// [SugarColumn(ColumnName = "UNIT_NAME")] public string UnitName { get; set; } /// /// [SugarColumn(ColumnName = "REPORF_CHECK")] public string ReporfCheck { get; set; } /// /// [SugarColumn(ColumnName = "GIVEN_MODIFY")] public string GivenModify { get; set; } }