using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表PORT_MIL_BATCH_SAMPLE_RESULT所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-11-14 /// public class PortMilBatchSampleResultEntity { /// /// 从MIL_PLAN 表带过来的ID /// private string planId = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 组号 /// private string groupNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 序号 /// private decimal? seq = null; /// /// 子管号 /// private string matNo = ""; /// /// 是否样管 /// private string isSamplePipe = ""; /// /// 是否有效(1有效) /// private string isValid = ""; /// /// 备注 /// private string remark = ""; /// /// 取样长度(mm) /// private string samplePipeLen = ""; /// /// 取样人 /// private string getSampleName = ""; /// /// 取样时间 /// private string getSampleTime = ""; /// /// 操作班次 /// private string getSampleShift = ""; /// /// 班次班组 /// private string getSampleClass = ""; /// /// 定尺长度 /// private decimal? orderLength = null; /// /// 理论重量 /// private decimal? actTheoryWeight = null; /// /// 支数 /// private decimal? actCount = null; /// /// 创建时间 /// private string crateTime = ""; /// /// 状态(0-合格 1-热区剔除 2-冷区剔除3-下线 4-返线5-留样) /// private string status = ""; /// /// 母管号 /// private string mMatNo = ""; /// /// 组炉标识(0,未组炉 1-组炉) /// private string groupFlag = ""; /// /// 操作工序(0-上料 2-加热炉 3-穿孔 4-连轧 5-再加热炉 6-定径 7分切 9矫直 10-探伤 11-人工质检12-交库) /// private string opProcess = ""; /// /// 返线工序(10-探伤返线 11-复检) /// private string backProcess = ""; /// /// 母坯号 /// private string mMMatNo = ""; /// /// 是否入库(0-未入库 1-已入库) /// private string instoreFlag = ""; /// /// 交库批号(无用) /// private string realBatchNo = ""; /// /// 切后长度(用于探伤子管再切) /// private decimal? recutLength = null; /// /// 切后理论重量 /// private decimal? cutActTheoryWeight = null; /// /// 取样长度A端(mm) /// private string samplePipeLenA = ""; /// /// 取样长度B端(mm) /// private string samplePipeLenB = ""; /// /// 下线类别(1,未探伤下线,2,已探伤下线) /// private string offlineType = ""; /// /// 结转年月 /// private string balYearMonth = ""; /// /// 成分判定结果代码 /// private string chemResultCode = ""; /// /// 性能判定结果代码 /// private string phyResultCode = ""; /// /// 从MIL_PLAN 表带过来的ID /// [Description("从MIL_PLAN 表带过来的ID")] [Nullable(false)] [DataLength(20)] [JsonProperty("planId")] public string PlanId { get { return planId; } set { planId = value; } } /// /// 生产批号 /// [Description("生产批号")] [Nullable(false)] [DataLength(20)] [JsonProperty("lotNo")] public string LotNo { get { return lotNo; } set { lotNo = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(false)] [DataLength(10)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 组号 /// [Description("组号")] [Nullable(true)] [DataLength(6)] [JsonProperty("groupNo")] public string GroupNo { get { return groupNo; } set { groupNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 性能批号 /// [Description("性能批号")] [Nullable(true)] [DataLength(20)] [JsonProperty("batchNo")] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(6)] [JsonProperty("seq")] public decimal? Seq { get { return seq; } set { seq = value; } } /// /// 子管号 /// [Description("子管号")] [Nullable(true)] [DataLength(20)] [JsonProperty("matNo")] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 是否样管 /// [Description("是否样管")] [Nullable(true)] [DataLength(1)] [JsonProperty("isSamplePipe")] public string IsSamplePipe { get { return isSamplePipe; } set { isSamplePipe = value; } } /// /// 是否有效(1有效) /// [Description("是否有效(1有效)")] [Nullable(true)] [DataLength(1)] [JsonProperty("isValid")] public string IsValid { get { return isValid; } set { isValid = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] [JsonProperty("remark")] public string Remark { get { return remark; } set { remark = value; } } /// /// 取样长度(mm) /// [Description("取样长度(mm)")] [Nullable(true)] [DataLength(20)] [JsonProperty("samplePipeLen")] public string SamplePipeLen { get { return samplePipeLen; } set { samplePipeLen = 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(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(8)] [JsonProperty("orderLength")] public decimal? OrderLength { get { return orderLength; } set { orderLength = value; } } /// /// 理论重量 /// [Description("理论重量")] [Nullable(true)] [DataLength(9)] [JsonProperty("actTheoryWeight")] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 支数 /// [Description("支数")] [Nullable(true)] [DataLength(3)] [JsonProperty("actCount")] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] [JsonProperty("crateTime")] public string CrateTime { get { return crateTime; } set { crateTime = value; } } /// /// 状态(0-合格 1-热区剔除 2-冷区剔除3-下线 4-返线5-留样) /// [Description("状态(0-合格 1-热区剔除 2-冷区剔除3-下线 4-返线5-留样)")] [Nullable(true)] [DataLength(1)] [JsonProperty("status")] public string Status { get { return status; } set { status = value; } } /// /// 母管号 /// [Description("母管号")] [Nullable(true)] [DataLength(20)] [JsonProperty("mMatNo")] public string MMatNo { get { return mMatNo; } set { mMatNo = value; } } /// /// 组炉标识(0,未组炉 1-组炉) /// [Description("组炉标识(0,未组炉 1-组炉)")] [Nullable(true)] [DataLength(1)] [JsonProperty("groupFlag")] public string GroupFlag { get { return groupFlag; } set { groupFlag = value; } } /// /// 操作工序(0-上料 2-加热炉 3-穿孔 4-连轧 5-再加热炉 6-定径 7分切 9矫直 10-探伤 11-人工质检12-交库) /// [Description("操作工序(0-上料 2-加热炉 3-穿孔 4-连轧 5-再加热炉 6-定径 7分切 9矫直 10-探伤 11-人工质检12-交库)")] [Nullable(true)] [DataLength(2)] [JsonProperty("opProcess")] public string OpProcess { get { return opProcess; } set { opProcess = value; } } /// /// 返线工序(10-探伤返线 11-复检) /// [Description("返线工序(10-探伤返线 11-复检)")] [Nullable(true)] [DataLength(2)] [JsonProperty("backProcess")] public string BackProcess { get { return backProcess; } set { backProcess = value; } } /// /// 母坯号 /// [Description("母坯号")] [Nullable(true)] [DataLength(20)] [JsonProperty("mMMatNo")] public string MMMatNo { get { return mMMatNo; } set { mMMatNo = value; } } /// /// 是否入库(0-未入库 1-已入库) /// [Description("是否入库(0-未入库 1-已入库)")] [Nullable(true)] [DataLength(1)] [JsonProperty("instoreFlag")] public string InstoreFlag { get { return instoreFlag; } set { instoreFlag = value; } } /// /// 交库批号(无用) /// [Description("交库批号(无用)")] [Nullable(true)] [DataLength(20)] [JsonProperty("realBatchNo")] public string RealBatchNo { get { return realBatchNo; } set { realBatchNo = value; } } /// /// 切后长度(用于探伤子管再切) /// [Description("切后长度(用于探伤子管再切)")] [Nullable(true)] [DataLength(8)] [JsonProperty("recutLength")] public decimal? RecutLength { get { return recutLength; } set { recutLength = value; } } /// /// 切后理论重量 /// [Description("切后理论重量")] [Nullable(true)] [DataLength(9)] [JsonProperty("cutActTheoryWeight")] public decimal? CutActTheoryWeight { get { return cutActTheoryWeight; } set { cutActTheoryWeight = 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; } } /// /// 下线类别(1,未探伤下线,2,已探伤下线) /// [Description("下线类别(1,未探伤下线,2,已探伤下线)")] [Nullable(true)] [DataLength(1)] [JsonProperty("offlineType")] public string OfflineType { get { return offlineType; } set { offlineType = value; } } /// /// 结转年月 /// [Description("结转年月")] [Nullable(true)] [DataLength(6)] [JsonProperty("balYearMonth")] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = 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; } } } }