using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表PORT_HTT_BATCH_SAMPLE_RESULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-01-09 /// public class PortHttBatchSampleResultEntity { /// /// 炉计划ID /// private string heatPlanNo = ""; /// /// 材料号(管号) /// private string matNo = ""; /// /// 母管号 /// private string mMatNo = ""; /// /// 母坯号 /// private string mMMatNo = ""; /// /// 生产批号(热处理) /// private string lotNo = ""; /// /// 生产批号序号(热处理) /// private string lotNoSqe = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 批号(性能) /// private string batchNo = ""; /// /// 组号 /// private string groupNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 标示炉号 /// private string flagStoveNo = ""; /// /// 外径(实际) /// private decimal? actDimater = null; /// /// 壁厚(实际) /// private decimal? actHeight = null; /// /// 长度(实际) /// private decimal? actLen = null; /// /// 长度下限(实际) /// private string actLenMin = ""; /// /// 长度上限(实际) /// private string actLenMax = ""; /// /// 材料支数(实际) /// private decimal? actCount = null; /// /// 材料实重(实际) /// private decimal? actWeight = null; /// /// 材料理论重量(实际) /// private decimal? actTheoryWeight = null; /// /// 是否样管 /// private string isSamplePipe = ""; /// /// 样管切长(mm) /// private decimal? samplePipeLen = null; /// /// 取样班次 /// private string getSampleShift = ""; /// /// 取样班组 /// private string getSampleClass = ""; /// /// 取样人 /// private string getSampleName = ""; /// /// 取样时间 /// private string getSampleTime = ""; /// /// 原判定炉号(组炉后存原判定炉号) /// private string oldJudgeStoveNo = ""; /// /// 组炉标识(0,未组炉 1-组炉) /// private string groupFlag = ""; /// /// 作业工序点代码(工序点代码---6002) /// private string opProcess = ""; /// /// 材料状态(00-合格 10-剔除 20-待处理) /// private string matStatus = ""; /// /// 离线标志(00无;10-离线;20返线;) /// private string leveLog = ""; /// /// 是否入库(0-未入库 1-已入库)--交库结炉时写 /// private string instoreFlag = ""; /// /// 虚拟入库标志(0-未入库 1-已入库)--交库时写 /// private string vmInstoreFlag = ""; /// /// 工艺路径 /// private string prcTechnologyPath = ""; /// /// 返线工序点(工序点代码6002) /// private string returnProcess = ""; /// /// 实际热处理取样分批(性能批号) /// private string phyBatchNo = ""; /// /// 生产(年月日) /// private string proYearMonthDay = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 申请判定单号 /// private string jugdeApplyCode = ""; /// /// 判定标志 /// private string jugdeApply = ""; /// /// 操作人 /// private string proUser = ""; /// /// 操作班次 /// private string proShift = ""; /// /// 操作班组 /// private string proGroup = ""; /// /// 操作时间 /// private string proTime = ""; /// /// 备注 /// private string remark = ""; /// /// 取样长度A端(mm) /// private string samplePipeLenA = ""; /// /// 取样长度B端(mm) /// private string samplePipeLenB = ""; /// /// 成分判定结果代码 /// private string chemResultCode = ""; /// /// 性能判定结果代码 /// private string phyResultCode = ""; /// /// 炉计划ID /// [Description("炉计划ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("heatPlanNo")] public string HeatPlanNo { get { return heatPlanNo; } set { heatPlanNo = value; } } /// /// 材料号(管号) /// [Description("材料号(管号)")] [Nullable(false)] [DataLength(20)] [JsonProperty("matNo")] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 母管号 /// [Description("母管号")] [Nullable(true)] [DataLength(20)] [JsonProperty("mMatNo")] public string MMatNo { get { return mMatNo; } set { mMatNo = value; } } /// /// 母坯号 /// [Description("母坯号")] [Nullable(true)] [DataLength(20)] [JsonProperty("mMMatNo")] public string MMMatNo { get { return mMMatNo; } set { mMMatNo = value; } } /// /// 生产批号(热处理) /// [Description("生产批号(热处理)")] [Nullable(true)] [DataLength(20)] [JsonProperty("lotNo")] public string LotNo { get { return lotNo; } set { lotNo = value; } } /// /// 生产批号序号(热处理) /// [Description("生产批号序号(热处理)")] [Nullable(true)] [DataLength(20)] [JsonProperty("lotNoSqe")] public string LotNoSqe { get { return lotNoSqe; } set { lotNoSqe = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号(性能) /// [Description("批号(性能)")] [Nullable(true)] [DataLength(3)] [JsonProperty("batchNo")] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 组号 /// [Description("组号")] [Nullable(true)] [DataLength(3)] [JsonProperty("groupNo")] public string GroupNo { get { return groupNo; } set { groupNo = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 标示炉号 /// [Description("标示炉号")] [Nullable(true)] [DataLength(20)] [JsonProperty("flagStoveNo")] public string FlagStoveNo { get { return flagStoveNo; } set { flagStoveNo = value; } } /// /// 外径(实际) /// [Description("外径(实际)")] [Nullable(true)] [DataLength(5)] [JsonProperty("actDimater")] public decimal? ActDimater { get { return actDimater; } set { actDimater = value; } } /// /// 壁厚(实际) /// [Description("壁厚(实际)")] [Nullable(true)] [DataLength(4)] [JsonProperty("actHeight")] public decimal? ActHeight { get { return actHeight; } set { actHeight = value; } } /// /// 长度(实际) /// [Description("长度(实际)")] [Nullable(true)] [DataLength(5)] [JsonProperty("actLen")] public decimal? ActLen { get { return actLen; } set { actLen = value; } } /// /// 长度下限(实际) /// [Description("长度下限(实际)")] [Nullable(true)] [DataLength(10)] [JsonProperty("actLenMin")] public string ActLenMin { get { return actLenMin; } set { actLenMin = value; } } /// /// 长度上限(实际) /// [Description("长度上限(实际)")] [Nullable(true)] [DataLength(10)] [JsonProperty("actLenMax")] public string ActLenMax { get { return actLenMax; } set { actLenMax = value; } } /// /// 材料支数(实际) /// [Description("材料支数(实际)")] [Nullable(true)] [DataLength(3)] [JsonProperty("actCount")] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 材料实重(实际) /// [Description("材料实重(实际)")] [Nullable(true)] [DataLength(9)] [JsonProperty("actWeight")] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 材料理论重量(实际) /// [Description("材料理论重量(实际)")] [Nullable(true)] [DataLength(9)] [JsonProperty("actTheoryWeight")] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 是否样管 /// [Description("是否样管")] [Nullable(true)] [DataLength(1)] [JsonProperty("isSamplePipe")] public string IsSamplePipe { get { return isSamplePipe; } set { isSamplePipe = value; } } /// /// 样管切长(mm) /// [Description("样管切长(mm)")] [Nullable(true)] [DataLength(5)] [JsonProperty("samplePipeLen")] public decimal? SamplePipeLen { get { return samplePipeLen; } set { samplePipeLen = value; } } /// /// 取样班次 /// [Description("取样班次")] [Nullable(true)] [DataLength(10)] [JsonProperty("getSampleShift")] public string GetSampleShift { get { return getSampleShift; } set { getSampleShift = value; } } /// /// 取样班组 /// [Description("取样班组")] [Nullable(true)] [DataLength(5)] [JsonProperty("getSampleClass")] public string GetSampleClass { get { return getSampleClass; } set { getSampleClass = value; } } /// /// 取样人 /// [Description("取样人")] [Nullable(true)] [DataLength(20)] [JsonProperty("getSampleName")] public string GetSampleName { get { return getSampleName; } set { getSampleName = value; } } /// /// 取样时间 /// [Description("取样时间")] [Nullable(true)] [JsonProperty("getSampleTime")] public string GetSampleTime { get { return getSampleTime; } set { getSampleTime = value; } } /// /// 原判定炉号(组炉后存原判定炉号) /// [Description("原判定炉号(组炉后存原判定炉号)")] [Nullable(true)] [DataLength(6)] [JsonProperty("oldJudgeStoveNo")] public string OldJudgeStoveNo { get { return oldJudgeStoveNo; } set { oldJudgeStoveNo = value; } } /// /// 组炉标识(0,未组炉 1-组炉) /// [Description("组炉标识(0,未组炉 1-组炉)")] [Nullable(true)] [DataLength(1)] [JsonProperty("groupFlag")] public string GroupFlag { get { return groupFlag; } set { groupFlag = value; } } /// /// 作业工序点代码(工序点代码---6002) /// [Description("作业工序点代码(工序点代码---6002)")] [Nullable(true)] [DataLength(10)] [JsonProperty("opProcess")] public string OpProcess { get { return opProcess; } set { opProcess = value; } } /// /// 材料状态(00-合格 10-剔除 20-待处理) /// [Description("材料状态(00-合格 10-剔除 20-待处理)")] [Nullable(true)] [DataLength(2)] [JsonProperty("matStatus")] public string MatStatus { get { return matStatus; } set { matStatus = value; } } /// /// 离线标志(00无;10-离线;20返线;) /// [Description("离线标志(00无;10-离线;20返线;)")] [Nullable(true)] [DataLength(2)] [JsonProperty("leveLog")] public string LeveLog { get { return leveLog; } set { leveLog = value; } } /// /// 是否入库(0-未入库 1-已入库)--交库结炉时写 /// [Description("是否入库(0-未入库 1-已入库)--交库结炉时写")] [Nullable(true)] [DataLength(1)] [JsonProperty("instoreFlag")] public string InstoreFlag { get { return instoreFlag; } set { instoreFlag = value; } } /// /// 虚拟入库标志(0-未入库 1-已入库)--交库时写 /// [Description("虚拟入库标志(0-未入库 1-已入库)--交库时写")] [Nullable(true)] [DataLength(1)] [JsonProperty("vmInstoreFlag")] public string VmInstoreFlag { get { return vmInstoreFlag; } set { vmInstoreFlag = value; } } /// /// 工艺路径 /// [Description("工艺路径")] [Nullable(true)] [DataLength(22)] [JsonProperty("prcTechnologyPath")] public string PrcTechnologyPath { get { return prcTechnologyPath; } set { prcTechnologyPath = value; } } /// /// 返线工序点(工序点代码6002) /// [Description("返线工序点(工序点代码6002)")] [Nullable(true)] [DataLength(10)] [JsonProperty("returnProcess")] public string ReturnProcess { get { return returnProcess; } set { returnProcess = value; } } /// /// 实际热处理取样分批(性能批号) /// [Description("实际热处理取样分批(性能批号)")] [Nullable(true)] [DataLength(10)] [JsonProperty("phyBatchNo")] public string PhyBatchNo { get { return phyBatchNo; } set { phyBatchNo = value; } } /// /// 生产(年月日) /// [Description("生产(年月日)")] [Nullable(true)] [DataLength(8)] [JsonProperty("proYearMonthDay")] public string ProYearMonthDay { get { return proYearMonthDay; } set { proYearMonthDay = value; } } /// /// 结算日期(年月) /// [Description("结算日期(年月)")] [Nullable(true)] [DataLength(6)] [JsonProperty("balYearMonth")] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } /// /// 申请判定单号 /// [Description("申请判定单号")] [Nullable(true)] [DataLength(40)] [JsonProperty("jugdeApplyCode")] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// 判定标志 /// [Description("判定标志")] [Nullable(true)] [DataLength(1)] [JsonProperty("jugdeApply")] public string JugdeApply { get { return jugdeApply; } set { jugdeApply = value; } } /// /// 操作人 /// [Description("操作人")] [Nullable(true)] [DataLength(20)] [JsonProperty("proUser")] public string ProUser { get { return proUser; } set { proUser = value; } } /// /// 操作班次 /// [Description("操作班次")] [Nullable(true)] [DataLength(1)] [JsonProperty("proShift")] public string ProShift { get { return proShift; } set { proShift = value; } } /// /// 操作班组 /// [Description("操作班组")] [Nullable(true)] [DataLength(1)] [JsonProperty("proGroup")] public string ProGroup { get { return proGroup; } set { proGroup = value; } } /// /// 操作时间 /// [Description("操作时间")] [Nullable(true)] [JsonProperty("proTime")] public string ProTime { get { return proTime; } set { proTime = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] [JsonProperty("remark")] public string Remark { get { return remark; } set { remark = value; } } /// /// 取样长度A端(mm) /// [Description("取样长度A端(mm)")] [Nullable(true)] [DataLength(20)] [JsonProperty("samplePipeLenA")] public string SamplePipeLenA { get { return samplePipeLenA; } set { samplePipeLenA = value; } } /// /// 取样长度B端(mm) /// [Description("取样长度B端(mm)")] [Nullable(true)] [DataLength(20)] [JsonProperty("samplePipeLenB")] public string SamplePipeLenB { get { return samplePipeLenB; } set { samplePipeLenB = value; } } /// /// 成分判定结果代码 /// [Description("成分判定结果代码")] [Nullable(true)] [DataLength(10)] [JsonProperty("chemResultCode")] public string ChemResultCode { get { return chemResultCode; } set { chemResultCode = value; } } /// /// 性能判定结果代码 /// [Description("性能判定结果代码")] [Nullable(true)] [DataLength(10)] [JsonProperty("phyResultCode")] public string PhyResultCode { get { return phyResultCode; } set { phyResultCode = value; } } } }