using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_LG_PHYJUDGE所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-09-29 /// public class QcmZgPhyjudgeEntity { /// /// 理化判定记录ID /// private string phyJudgeId = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 材料号 /// private string objectno = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCdoe = ""; /// /// 工序名称 /// private string processDesc = ""; /// /// 理化判定结果(4074) /// private string judgeresultPhy = ""; /// /// 判定钢级(牌号) /// private string judgesteelcode = ""; /// /// 判定钢种 /// private string judgegradecode = ""; /// /// 判定备注 /// private string memo = ""; /// /// 理化判定结果集ID /// private string phyResultId = ""; /// /// 有效标志(1:有效,0:无效) /// private string validflag = ""; /// /// 判定人 /// private string createName = ""; /// /// 判定时间 /// private string createTime = ""; private string jugdeApplyCode = ""; private string batchNo = ""; private string heatPlanNo = ""; /// /// 理化判定记录ID /// [Description("理化判定记录ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("phyJudgeId")] public string PhyJudgeId { get { return phyJudgeId; } set { phyJudgeId = 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("objectno")] public string Objectno { get { return objectno; } set { objectno = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(4)] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码(A\\B\\C\\D.....)")] [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(false)] [DataLength(20)] [JsonProperty("judgeresultPhy")] public string JudgeresultPhy { get { return judgeresultPhy; } set { judgeresultPhy = value; } } /// /// 判定钢级(牌号) /// [Description("判定钢级(牌号)")] [Nullable(true)] [DataLength(40)] [JsonProperty("judgesteelcode")] public string Judgesteelcode { get { return judgesteelcode; } set { judgesteelcode = value; } } /// /// 判定钢种 /// [Description("判定钢种")] [Nullable(true)] [DataLength(40)] [JsonProperty("judgegradecode")] public string Judgegradecode { get { return judgegradecode; } set { judgegradecode = value; } } /// /// 判定备注 /// [Description("判定备注")] [Nullable(true)] [DataLength(200)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 理化判定结果集ID /// [Description("理化判定结果集ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("phyResultId")] public string PhyResultId { get { return phyResultId; } set { phyResultId = value; } } /// /// 有效标志(1:有效,0:无效) /// [Description("有效标志(1:有效,0:无效)")] [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(false)] [JsonProperty("createTime")] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 判定单号 /// [Description("判定单号")] [JsonProperty("jugdeApplyCode")] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// 批号 /// [Description("批号")] [JsonProperty("batchNo")] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 轧管炉计划 /// [Description("轧管炉计划ID")] [JsonProperty("heatPlanNo")] public string HeatPlanNo { get { return heatPlanNo; } set { heatPlanNo = value; } } } }