using SqlSugar; namespace PadApplication.Entites.DbModels; /// /// IQC抽检表头 /// [SugarTable("MES_QA_ITEMS_DETECT_02")] public class MesQaItemsDetect02 { /// /// [SugarColumn(ColumnName = "ID", OracleSequenceName = "SEQ_QM_ID", IsPrimaryKey = true)] public decimal Id { get; set; } /// /// 检验单号 /// [SugarColumn(ColumnName = "RELEASE_NO")] public string ReleaseNo { get; set; } /// /// 检验人员 /// [SugarColumn(ColumnName = "FCHECK_BY")] public string FcheckBy { get; set; } /// /// 入库单号 /// [SugarColumn(ColumnName = "AUFNR")] public string Aufnr { get; set; } /// /// 工作中心 /// [SugarColumn(ColumnName = "WORKSHOP_CENTER_CODE")] public string WorkshopCenterCode { get; set; } /// /// 线体编号 /// [SugarColumn(ColumnName = "LINE_NO")] public string LineNo { get; set; } /// /// 提交标识 /// [SugarColumn(ColumnName = "FSUBMIT")] public decimal? Fsubmit { get; set; } /// /// [SugarColumn(ColumnName = "FCHECK_RESU")] public string FcheckResu { get; set; } /// /// [SugarColumn(ColumnName = "PROC_NO")] public string ProcNo { get; set; } /// /// [SugarColumn(ColumnName = "LOT_NO")] public string LotNo { get; set; } /// /// [SugarColumn(ColumnName = "CLASS_NO")] public string ClassNo { get; set; } /// /// [SugarColumn(ColumnName = "FTYPE")] public string Ftype { get; set; } /// /// [SugarColumn(ColumnName = "ITEM_NO")] public string ItemNo { get; set; } /// /// [SugarColumn(ColumnName = "PROC_NAME")] public string ProcName { get; set; } /// /// [SugarColumn(ColumnName = "FAC_LEVEL")] public string FacLevel { get; set; } /// /// [SugarColumn(ColumnName = "CLASS_NAME")] public string ClassName { get; set; } /// /// 二次判定结果 /// [SugarColumn(ColumnName = "FSECOND_RESU")] public string FsecondResu { 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 = "ISMODIFY1")] public decimal? Ismodify1 { get; set; } /// /// [SugarColumn(ColumnName = "MODIFY1_BY")] public string Modify1By { get; set; } /// /// [SugarColumn(ColumnName = "MODIFY1_DATE")] public DateTime? Modify1Date { get; set; } /// /// [SugarColumn(ColumnName = "FACTORY")] public string Factory { get; set; } /// /// 版本 /// [SugarColumn(ColumnName = "FVERSION")] public decimal? Fversion { get; set; } /// /// 设备编号 /// [SugarColumn(ColumnName = "FEQP")] public string Feqp { get; set; } /// /// [SugarColumn(ColumnName = "MENU_ID")] public decimal? MenuId { get; set; } /// /// 工位ID /// [SugarColumn(ColumnName = "LINEINFO_ID")] public string LineinfoId { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// 生产类型 /// [SugarColumn(ColumnName = "FPROD_TYPE")] public string FprodType { get; set; } /// /// 作废标识 /// [SugarColumn(ColumnName = "FCANCEL")] public string Fcancel { get; set; } /// /// 检验日期 /// [SugarColumn(ColumnName = "FCHECK_DATE")] public DateTime? FcheckDate { get; set; } /// /// 生产日期 /// [SugarColumn(ColumnName = "FPROD_DATE")] public DateTime? FprodDate { get; set; } /// /// 条码 /// [SugarColumn(ColumnName = "BARCODE_A")] public string BarcodeA { get; set; } /// /// 条码 /// [SugarColumn(ColumnName = "BARCODE_B")] public string BarcodeB { get; set; } /// /// 1为首检,2为完工检验 /// [SugarColumn(ColumnName = "FSTATUS")] public decimal? Fstatus { get; set; } /// /// 计划数量 /// [SugarColumn(ColumnName = "PLAN_QTY")] public decimal? PlanQty { get; set; } /// /// 备注 /// [SugarColumn(ColumnName = "REMEKE")] public string Remeke { get; set; } // /// // /// // /// // [SugarColumn(ColumnName = "F_TYPE")] // public decimal? FType { get; set; } /// /// 据点 /// [SugarColumn(ColumnName = "ADDRESS_CODE")] public string AddressCode { get; set; } /// /// 部门 /// [SugarColumn(ColumnName = "DEPARTMENT_NO")] public string DepartmentNo { get; set; } [SugarColumn(IsIgnore = true)] public decimal? xjCount { get; set; } }