using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_LG_CHEMJUDGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-09-07 /// public class QcmLgChemjudgeEntity { /// /// 成分判定记录ID /// private string chemJudgeId = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 坯料号(材料号) /// private string matNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 计划合同行号 /// private string planOrderno = ""; /// /// 判定合同行号 /// private string judgeOrderno = ""; /// /// 成分判定结果(4074) /// private string judgeresultChem = ""; /// /// 是否脱单(1:是,0:否) /// private string orderisunchain = ""; /// /// 成分化验号 /// private string assayno = ""; /// /// 有效标志(1:有效;0:无效) /// private string validflag = ""; /// /// 备注 /// private string memo = ""; /// /// 判定人 /// private string createName = ""; /// /// 判定时间 /// private string createTime = ""; /// /// 判定申请单号 /// private string jugdeApplyCode = ""; private string designKey = ""; private string mscPline = ""; private string cic = ""; /// /// 成分判定记录ID /// [Description("成分判定记录ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("chemJudgeId")] public string ChemJudgeId { get { return chemJudgeId; } set { chemJudgeId = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(false)] [DataLength(20)] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(false)] [DataLength(6)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 坯料号(材料号) /// [Description("坯料号(材料号)")] [Nullable(true)] [DataLength(30)] [JsonProperty("matNo")] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(4)] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码")] [Nullable(true)] [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; } } /// /// 计划合同行号 /// [Description("计划合同行号")] [Nullable(true)] [DataLength(40)] [JsonProperty("planOrderno")] public string PlanOrderno { get { return planOrderno; } set { planOrderno = value; } } /// /// 判定合同行号 /// [Description("判定合同行号")] [Nullable(true)] [DataLength(40)] [JsonProperty("judgeOrderno")] public string JudgeOrderno { get { return judgeOrderno; } set { judgeOrderno = value; } } /// /// 成分判定结果(4074) /// [Description("成分判定结果")] [Nullable(false)] [DataLength(20)] [JsonProperty("judgeresultChem")] public string JudgeresultChem { get { return judgeresultChem; } set { judgeresultChem = value; } } /// /// 是否脱单(1:是,0:否) /// [Description("是否脱单")] [Nullable(false)] [DataLength(1)] [JsonProperty("orderisunchain")] public string Orderisunchain { get { return orderisunchain; } set { orderisunchain = value; } } /// /// 成分化验号 /// [Description("成分化验号")] [Nullable(false)] [DataLength(30)] [JsonProperty("assayno")] public string Assayno { get { return assayno; } set { assayno = 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(false)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 判定申请单号 /// [Description("判定申请单号")] [Nullable(true)] [DataLength(20)] [JsonProperty("jugdeApplyCode")] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// designKey /// [Description("designKey")] [JsonProperty("designKey")] public string DesignKey { get { return designKey; } set { designKey = value; } } /// /// mscPline /// [Description("mscPline")] [JsonProperty("mscPline")] public string MscPline { get { return mscPline; } set { mscPline = value; } } /// /// cic /// [Description("cic")] [JsonProperty("cic")] public string Cic { get { return cic; } set { cic = value; } } } }