using System; using System.Collections.Generic; using System.Linq; using SqlSugar; namespace MES.Service.Modes { /// /// 来料检验从表 /// [SugarTable("MES_QA_ITEMS_DETECT_DETAIL5")] public class MesQaItemsDetectDetail5 { /// /// /// [SugarColumn(ColumnName="ID" ,IsPrimaryKey = true )] public decimal Id { get; set; } /// /// 标准值类型 /// [SugarColumn(ColumnName="FTEXT_TYPE" )] public string FtextType { get; set; } /// /// 标准值 /// [SugarColumn(ColumnName="FSTAND" )] public decimal? Fstand { get; set; } /// /// 上公差 /// [SugarColumn(ColumnName="FUP_ALLOW" )] public string FupAllow { get; set; } /// /// 下公差 /// [SugarColumn(ColumnName="FDOWN_ALLOW" )] public string FdownAllow { get; set; } /// /// 检验水准 /// [SugarColumn(ColumnName="SAMPLE_SIZE_NO" )] public string SampleSizeNo { get; set; } /// /// 检验水平 /// [SugarColumn(ColumnName="FCHECK_LEVEL" )] public string FcheckLevel { get; set; } /// /// 拒收水平 /// [SugarColumn(ColumnName="FAC_LEVEL" )] public string FacLevel { get; set; } /// /// 检验项目 /// [SugarColumn(ColumnName="FCHECK_ITEM" )] public string FcheckItem { get; set; } /// /// 规格要求 /// [SugarColumn(ColumnName="FSPEC_REQU" )] public string FspecRequ { get; set; } /// /// 抽检数量 /// [SugarColumn(ColumnName="CHECK_QYT" )] public decimal? CheckQyt { get; set; } /// /// 检验结果 /// [SugarColumn(ColumnName="FCHECK_RESU" )] public string FcheckResu { get; set; } /// /// AC数量 /// [SugarColumn(ColumnName="FAC_QTY" )] public decimal? FacQty { get; set; } /// /// RE数量 /// [SugarColumn(ColumnName="FRE_QTY" )] public decimal? FreQty { get; set; } /// /// 不合格数 /// [SugarColumn(ColumnName="FNG_QTY" )] public decimal? FngQty { get; set; } /// /// 不良率 /// [SugarColumn(ColumnName="FNG_RATE" )] public decimal? FngRate { get; set; } /// /// 已录入数量 /// [SugarColumn(ColumnName="FENTER_QTY" )] public decimal? FenterQty { get; set; } /// /// /// [SugarColumn(ColumnName="RELEASE_NO" )] public string ReleaseNo { get; set; } /// /// /// [SugarColumn(ColumnName="COMPANY" )] public string Company { get; set; } /// /// /// [SugarColumn(ColumnName="FACTORY" )] public string Factory { get; set; } /// /// 检验项目描述 /// [SugarColumn(ColumnName="FCHECK_ITEM_DESC" )] public string FcheckItemDesc { get; set; } /// /// 工序号 /// [SugarColumn(ColumnName="PROC_NO" )] public string ProcNo { get; set; } /// /// 工作中心编码 /// [SugarColumn(ColumnName="WORKSHOP_CENTER_CODE" )] public string WorkshopCenterCode { get; set; } /// /// 单位 /// [SugarColumn(ColumnName="FUNIT" )] public string Funit { get; set; } /// /// 特定修改 /// [SugarColumn(ColumnName="GIVEN_MODIFY" )] public short? GivenModify { get; set; } /// /// 检验工具 /// [SugarColumn(ColumnName="FCHECK_TOOL" )] public string FcheckTool { get; set; } /// /// 更新人 /// [SugarColumn(ColumnName="LASTUPDATE_BY" )] public string LastupdateBy { get; set; } /// /// 更新时间 /// [SugarColumn(ColumnName="LASTUPDATE_DATE" )] public DateTime? LastupdateDate { get; set; } } }