using SqlSugar; namespace GS.QC.Models; /// /// IQC、OQC检验项目 /// [SugarTable("MES_QM_CHECKITEM")] public class MesQmCheckitem { /// /// 默认值: (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 = "FTYPE")] public string Ftype { get; set; } /// /// 项目分类(1:抽检 2:巡检 3:完工检验) /// [SugarColumn(ColumnName = "CHECK_TYPE")] public string CheckType { get; set; } /// /// 客户名称 /// [SugarColumn(ColumnName = "NAME1")] public string Name1 { get; set; } /// /// 特殊规格物料 /// [SugarColumn(ColumnName = "FSPECIAL_ITEM")] public long? FspecialItem { get; set; } /// /// 所属工厂 /// [SugarColumn(ColumnName = "FACTORY")] public string Factory { get; set; } /// /// 检验水准 /// [SugarColumn(ColumnName = "FINSPECTION_LEVEL")] public string FinspectionLevel { get; set; } /// /// 检验水平 /// [SugarColumn(ColumnName = "FCHECK_LEVEL")] public string FcheckLevel { get; set; } /// /// 接收水平 /// [SugarColumn(ColumnName = "FRECEIVING_LEVEL")] public string FreceivingLevel { get; set; } /// /// 审批标记 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "FONE_CHECKED")] public bool? FoneChecked { get; set; } /// /// 审批人 /// [SugarColumn(ColumnName = "FONE_CHECKOR")] public string FoneCheckor { get; set; } /// /// 审批日期 /// [SugarColumn(ColumnName = "FONE_CHECKDATE")] public DateTime? FoneCheckdate { get; set; } /// /// 批准标记 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "FTWO_CHECKED")] public bool? FtwoChecked { get; set; } /// /// 批准人 /// [SugarColumn(ColumnName = "FTWO_CHECKOR")] public string FtwoCheckor { get; set; } /// /// 批准日期 /// [SugarColumn(ColumnName = "FTWO_CHECKDATE")] public DateTime? FtwoCheckdate { get; set; } /// /// 修改/ 新增状态 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "EDIT_STATUS")] public bool? EditStatus { get; set; } /// /// 版本 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "FVERSION")] public long? Fversion { get; set; } /// /// 是否可用 /// 默认值: ((0)) /// [SugarColumn(ColumnName = "ISENABLED")] public bool? Isenabled { get; set; } /// /// [SugarColumn(ColumnName = "COMPANY")] public string Company { get; set; } /// /// 客户编码 /// [SugarColumn(ColumnName = "KUNNR")] public string Kunnr { get; set; } /// /// 最大抽检数 /// [SugarColumn(ColumnName = "MAX_CHECK_QTY")] public long? MaxCheckQty { get; set; } /// /// 提醒次数 /// [SugarColumn(ColumnName = "REM_QTY")] public long? RemQty { get; set; } /// /// 未论证物料 /// [SugarColumn(ColumnName = "OTHERFLAG")] public bool? Otherflag { get; set; } /// /// 成品电池类型:动力/ 储能 /// [SugarColumn(ColumnName = "BATTYPE")] public string Battype { get; set; } /// /// 项目名称 /// [SugarColumn(ColumnName = "PROJECT_NAME")] public string ProjectName { get; set; } /// /// 物料名称 /// [SugarColumn(ColumnName = "TNAME")] public string Tname { get; set; } /// /// 物料ID /// [SugarColumn(ColumnName = "ITEM_ID")] public long? ItemId { get; set; } [SugarColumn(IsIgnore = true)] public List list { get; set; } /// /// 使用组织 /// [SugarColumn(IsIgnore = true)] public string FSubsidiary { get; set; } /// /// 物料名称 /// [SugarColumn(IsIgnore = true)] public string mc { get; set; } /// /// 物料规格 /// [SugarColumn(IsIgnore = true)] public string gg { get; set; } }