using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_LG_JUDGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-11-04 /// public class QcmLgJudgeEntity { /// /// 综合判定记录ID /// private string judgeId = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 坯料号 /// private string objectno2 = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 成分判定结果(4074) /// private string judgeresultChem = ""; /// /// 理化判定结果(4074) /// private string judgeresultPhy = ""; /// /// 表面判定结果(4074) /// private string judgeresultFace = ""; /// /// 公差判定结果(4074) /// private string judgeresultSpec = ""; /// /// 综合判定结果(4074) /// private string judgeresult = ""; /// /// 判定原因 /// private string judgereason = ""; /// /// 成分化验号 /// private string assayno = ""; /// /// 理化判定结果集ID /// private string phyResultId = ""; /// /// 成分判定备注 /// private string memoChem = ""; /// /// 理化判定备注 /// private string memoPhy = ""; /// /// 表面判定备注 /// private string memoFace = ""; /// /// 公差判定备注 /// private string memoSpec = ""; /// /// 综合判定备注 /// private string memo = ""; /// /// 有效标志(1:有效;0:无效) /// private string validflag = ""; /// /// 判定人 /// private string createName = ""; /// /// 判定时间 /// private string createTime = ""; /// /// 综合判定记录ID /// [Description("综合判定记录ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("judgeId")] public string JudgeId { get { return judgeId; } set { judgeId = value; } } /// /// 冶炼炉号 /// [Description("冶炼炉号")] [Nullable(true)] [DataLength(20)] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 坯料号 /// [Description("坯料号")] [Nullable(true)] [DataLength(20)] [JsonProperty("objectno2")] public string Objectno2 { get { return objectno2; } set { objectno2 = 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; } } /// /// 成分判定结果(4074) /// [Description("成分判定结果(4074)")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeresultChem")] public string JudgeresultChem { get { return judgeresultChem; } set { judgeresultChem = value; } } /// /// 理化判定结果(4074) /// [Description("理化判定结果(4074)")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeresultPhy")] public string JudgeresultPhy { get { return judgeresultPhy; } set { judgeresultPhy = value; } } /// /// 表面判定结果(4074) /// [Description("表面判定结果(4074)")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeresultFace")] public string JudgeresultFace { get { return judgeresultFace; } set { judgeresultFace = value; } } /// /// 公差判定结果(4074) /// [Description("公差判定结果(4074)")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeresultSpec")] public string JudgeresultSpec { get { return judgeresultSpec; } set { judgeresultSpec = value; } } /// /// 综合判定结果(4074) /// [Description("综合判定结果(4074)")] [Nullable(false)] [DataLength(20)] [JsonProperty("judgeresult")] public string Judgeresult { get { return judgeresult; } set { judgeresult = value; } } /// /// 判定原因 /// [Description("判定原因")] [Nullable(true)] [DataLength(200)] [JsonProperty("judgereason")] public string Judgereason { get { return judgereason; } set { judgereason = value; } } /// /// 成分化验号 /// [Description("成分化验号")] [Nullable(false)] [DataLength(30)] [JsonProperty("assayno")] public string Assayno { get { return assayno; } set { assayno = value; } } /// /// 理化判定结果集ID /// [Description("理化判定结果集ID")] [Nullable(true)] [DataLength(20)] [JsonProperty("phyResultId")] public string PhyResultId { get { return phyResultId; } set { phyResultId = value; } } /// /// 成分判定备注 /// [Description("成分判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memoChem")] public string MemoChem { get { return memoChem; } set { memoChem = value; } } /// /// 理化判定备注 /// [Description("理化判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memoPhy")] public string MemoPhy { get { return memoPhy; } set { memoPhy = value; } } /// /// 表面判定备注 /// [Description("表面判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memoFace")] public string MemoFace { get { return memoFace; } set { memoFace = value; } } /// /// 公差判定备注 /// [Description("公差判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memoSpec")] public string MemoSpec { get { return memoSpec; } set { memoSpec = value; } } /// /// 综合判定备注 /// [Description("综合判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 有效标志(1:有效;0:无效) /// [Description("有效标志")] [Nullable(false)] [DataLength(1)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = 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; } } } }