using System; using System.Collections.Generic; namespace MES.Service.Modes { /// /// IQC、OQC检验项目 /// public class MesQmCheckitem { /// /// /// 默认值: (newid()) /// public Guid Guid { get; set; } /// /// 创建人 /// public string CreateBy { get; set; } /// /// 创建时间 /// public DateTime? CreateDate { get; set; } /// /// 最后更新人 /// public string LastupdateBy { get; set; } /// /// 最后更新时间 /// public DateTime? LastupdateDate { get; set; } /// /// 备注 /// public string Memo { get; set; } /// /// 物料产品编码 /// public string ItemNo { get; set; } /// /// 分类 /// public string Ftype { get; set; } /// /// 项目分类(1:抽检 2:巡检 3:完工检验) /// public string CheckType { get; set; } /// /// 客户名称 /// public string Name1 { get; set; } /// /// 特殊规格物料 /// public long? FspecialItem { get; set; } /// /// 所属工厂 /// public string Factory { get; set; } /// /// 检验水准 /// public string FinspectionLevel { get; set; } /// /// 检验水平 /// public string FcheckLevel { get; set; } /// /// 接收水平 /// public string FreceivingLevel { get; set; } /// /// 审批标记 /// 默认值: ((0)) /// public bool? FoneChecked { get; set; } /// /// 审批人 /// public string FoneCheckor { get; set; } /// /// 审批日期 /// public DateTime? FoneCheckdate { get; set; } /// /// 批准标记 /// 默认值: ((0)) /// public bool? FtwoChecked { get; set; } /// /// 批准人 /// public string FtwoCheckor { get; set; } /// /// 批准日期 /// public DateTime? FtwoCheckdate { get; set; } /// /// 修改/ 新增状态 /// 默认值: ((0)) /// public bool? EditStatus { get; set; } /// /// 版本 /// 默认值: ((0)) /// public long? Fversion { get; set; } /// /// 是否可用 /// 默认值: ((0)) /// public bool? Isenabled { get; set; } /// /// /// public string Company { get; set; } /// /// 客户编码 /// public string Kunnr { get; set; } /// /// 最大抽检数 /// public long? MaxCheckQty { get; set; } /// /// 提醒次数 /// public long? RemQty { get; set; } /// /// 未论证物料 /// public bool? Otherflag { get; set; } /// /// 成品电池类型:动力/ 储能 /// public string Battype { get; set; } /// /// 项目名称 /// public string ProjectName { get; set; } /// /// 物料名称 /// public string Tname { get; set; } /// /// 物料ID /// public long? ItemId { get; set; } public List list { get; set; } } }