using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_ZG_CHEMJUDGE_EXCEPTION所对应的实体类(生成工具:代码生成工具1.0) /// 作者:tgcx-test 时间:2016-05-26 /// public class QcmZgChemjudgeExceptionEntity { /// /// 成分判定记录ID(QCM_ZG_CHEMJUDGE) /// private string chemJudgeId = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 计划生产订单号 /// private string planProorder = ""; /// /// ORD_PK /// private string ordPk = ""; /// /// ORD_LN_PK(ORD_PK+三位流失号) /// private string ordLnPk = ""; /// /// ORD_LN_DLY_PK(ORD_LN_PK+三位流水号) /// private string ordLnDlyPk = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 成分判定结果(4074) /// private string judgeresultChem = ""; /// /// 成分化验号 /// private string assayno = ""; /// /// 是否脱单(1:是,0:否) /// private string orderisunchain = ""; /// /// 有效标志(1:有效;0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 判定人 /// private string createName = ""; /// /// 判定时间 /// private string createTime = ""; /// /// 成分判定记录ID(QCM_ZG_CHEMJUDGE) /// [Description("成分判定记录ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("chemJudgeId")] public string ChemJudgeId { get { return chemJudgeId; } set { chemJudgeId = value; } } /// /// 生产批号 /// [Description("生产批号")] [Nullable(true)] [DataLength(20)] [JsonProperty("lotNo")] public string LotNo { get { return lotNo; } set { lotNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(false)] [DataLength(6)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 计划生产订单号 /// [Description("计划生产订单号")] [Nullable(false)] [DataLength(40)] [JsonProperty("planProorder")] public string PlanProorder { get { return planProorder; } set { planProorder = value; } } /// /// ORD_PK /// [Description("ORD_PK")] [Nullable(false)] [DataLength(40)] [JsonProperty("ordPk")] public string OrdPk { get { return ordPk; } set { ordPk = value; } } /// /// ORD_LN_PK(ORD_PK+三位流失号) /// [Description("ORD_LN_PK(ORD_PK+三位流失号)")] [Nullable(false)] [DataLength(40)] [JsonProperty("ordLnPk")] public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } /// /// ORD_LN_DLY_PK(ORD_LN_PK+三位流水号) /// [Description("ORD_LN_DLY_PK(ORD_LN_PK+三位流水号)")] [Nullable(false)] [DataLength(40)] [JsonProperty("ordLnDlyPk")] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码(A\\B\\C\\D.....)")] [Nullable(false)] [DataLength(1)] [JsonProperty("processCdoe")] public string ProcessCdoe { get { return processCdoe; } set { processCdoe = value; } } /// /// 工序名称 /// [Description("工序名称")] [Nullable(true)] [DataLength(50)] [JsonProperty("processDesc")] public string ProcessDesc { get { return processDesc; } set { processDesc = value; } } /// /// 成分判定结果(4074) /// [Description("成分判定结果")] [Nullable(false)] [DataLength(20)] [JsonProperty("judgeresultChem")] public string JudgeresultChem { get { return judgeresultChem; } set { judgeresultChem = value; } } /// /// 成分化验号 /// [Description("成分化验号")] [Nullable(false)] [DataLength(300)] [JsonProperty("assayno")] public string Assayno { get { return assayno; } set { assayno = value; } } /// /// 是否脱单(1:是,0:否) /// [Description("是否脱单")] [Nullable(false)] [DataLength(1)] [JsonProperty("orderisunchain")] public string Orderisunchain { get { return orderisunchain; } set { orderisunchain = value; } } /// /// 有效标志(1:有效;0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 判定人 /// [Description("判定人")] [Nullable(true)] [DataLength(20)] [JsonProperty("createName")] public string CreateName { get { return createName; } set { createName = value; } } /// /// 判定时间 /// [Description("判定时间")] [Nullable(true)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } } }