using Core.Mes.Client.Comm.Attribute; using Newtonsoft.Json; using System; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表QCM_GP_JUGDE_APPLY所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2016-10-24 /// public class QcmGpJugdeApplyEntity { /// /// 申请判定单号 /// private string jugdeApplyCode = ""; /// /// 申请判定序号 /// private string jugdeApplySqe = ""; /// /// 电炉炉号 /// private string stoveNo = ""; /// /// 浇次号 /// private string castNo = ""; /// /// 连铸机号 /// private string ccmid = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 组号 /// private string batchGroudNo = ""; /// /// 工序代码(A\B\C\D.....) /// private string processCode = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 单倍坯长 /// private decimal? lenGpSingle = null; /// /// 倍尺数 /// private decimal? multipleNum = null; /// /// 支数 /// private decimal? actCount = null; /// /// 外径(实际) /// private decimal? actDimater = null; /// /// 坯长度(实际) /// private decimal? actLen = null; /// /// 实重 /// private decimal? actWeight = null; /// /// 理论重量 /// private decimal? actTheoryWeight = null; /// /// 申请判定生产订单号 /// private string proOrderId = ""; /// /// 表面结果代码 /// private string faceResultCode = ""; /// /// 公差结果代码 /// private string specResultCode = ""; /// /// 成分结果代码 /// private string chemResultCode = ""; /// /// 理化结果代码 /// private string phyResultCode = ""; /// /// 探伤结果代码 /// private string detectResultCode = ""; /// /// 表面检验报告目录 /// private string faceResultPath = ""; /// /// 公差检验报告目录 /// private string specResultPath = ""; /// /// 成分检验报告目录 /// private string chemResultPath = ""; /// /// 理化检验报告目录 /// private string phyResultPath = ""; /// /// 探伤检验报告目录 /// private string detectResultPath = ""; /// /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开) /// private decimal? qualityGroup = null; /// /// 物料码 /// private string materialNo = ""; /// /// 物料描叙 /// private string materialName = ""; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述(PSL1....) /// private string stdStyleDesc = ""; /// /// 工艺文件号 /// private string crafNo = ""; /// /// 生产产线名称 /// private string plineName = ""; /// /// 生产合同号(合同号) /// private string proOrderNo = ""; /// /// 材料去向代码 /// private string matGowhereCode = ""; /// /// 材料去向 /// private string matGowhereName = ""; /// /// 综合判定结果代码 /// private string judgeResultCode = ""; /// /// 综合判定结果 /// private string judgeResult = ""; /// /// 综合判定时间 /// private string judgeResultTime = ""; /// /// 综合判定人 /// private string judgeMaker = ""; /// /// 是否已处理后工序炉计划 /// private string ifSetZyPlan = ""; /// /// 探伤等级 /// private string testingGrade = ""; /// /// 探伤种类 /// private string testingType = ""; /// /// 交货行主键 /// private string ordLnDlyPk = ""; /// /// 送判状态 (0 正常送判,1退判) /// private string applyFlag = ""; /// /// 退判原因 /// private string backJugdeMemo = ""; /// /// 状态(00:初使状态;10:正在处理;20:已判定) /// private string validflag = ""; /// /// 申判人 /// private string applyName = ""; /// /// 申判时间 /// private string applyTime = ""; /// /// 申请判定备注 /// private string memo = ""; /// /// 申请判定单号 /// [Description("申请判定单号")] [Nullable(false)] [DataLength(40)] [JsonProperty("jugdeApplyCode")] public string JugdeApplyCode { get { return jugdeApplyCode; } set { jugdeApplyCode = value; } } /// /// 申请判定序号 /// [Description("申请判定序号")] [Nullable(false)] [DataLength(3)] [JsonProperty("jugdeApplySqe")] public string JugdeApplySqe { get { return jugdeApplySqe; } set { jugdeApplySqe = value; } } /// /// 冶炼炉号 /// [Description("冶炼炉号")] [Nullable(true)] [DataLength(20)] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 浇次号 /// [Description("浇次号")] [Nullable(true)] [DataLength(20)] [JsonProperty("castNo")] public string CastNo { get { return castNo; } set { castNo = value; } } /// /// 连铸机号 /// [Description("连铸机号")] [Nullable(true)] [DataLength(20)] [JsonProperty("ccmid")] public string Ccmid { get { return ccmid; } set { ccmid = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 组号 /// [Description("组号")] [Nullable(true)] [DataLength(3)] [JsonProperty("batchGroudNo")] public string BatchGroudNo { get { return batchGroudNo; } set { batchGroudNo = value; } } /// /// 工序代码(A\B\C\D.....) /// [Description("工序代码")] [Nullable(true)] [DataLength(1)] [JsonProperty("processCode")] public string ProcessCode { get { return processCode; } set { processCode = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 单倍坯长 /// [Description("单倍坯长")] [Nullable(true)] [DataLength(10)] [JsonProperty("lenGpSingle")] public decimal? LenGpSingle { get { return lenGpSingle; } set { lenGpSingle = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [Nullable(true)] [DataLength(10)] [JsonProperty("multipleNum")] public decimal? MultipleNum { get { return multipleNum; } set { multipleNum = value; } } /// /// 支数 /// [Description("支数")] [Nullable(true)] [DataLength(5)] [JsonProperty("actCount")] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 外径(实际) /// [Description("外径(实际)")] [Nullable(true)] [DataLength(5)] [JsonProperty("actDimater")] public decimal? ActDimater { get { return actDimater; } set { actDimater = value; } } /// /// 坯长度(实际) /// [Description("坯长度(实际)")] [Nullable(true)] [DataLength(10)] [JsonProperty("actLen")] public decimal? ActLen { get { return actLen; } set { actLen = value; } } /// /// 实重 /// [Description("实重")] [Nullable(true)] [DataLength(12)] [JsonProperty("actWeight")] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } /// /// 理论重量 /// [Description("理论重量")] [Nullable(true)] [DataLength(12)] [JsonProperty("actTheoryWeight")] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 生产订单号(判定) /// [Description("生产订单号(判定)")] [Nullable(true)] [DataLength(20)] [JsonProperty("proOrderId")] public string ProOrderId { get { return proOrderId; } set { proOrderId = value; } } /// /// 表面结果代码 /// [Description("表面结果代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("faceResultCode")] public string FaceResultCode { get { return faceResultCode; } set { faceResultCode = value; } } /// /// 公差结果代码 /// [Description("公差结果代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("specResultCode")] public string SpecResultCode { get { return specResultCode; } set { specResultCode = value; } } /// /// 成分结果代码 /// [Description("成分结果代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("chemResultCode")] public string ChemResultCode { get { return chemResultCode; } set { chemResultCode = value; } } /// /// 理化结果代码 /// [Description("理化结果代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("phyResultCode")] public string PhyResultCode { get { return phyResultCode; } set { phyResultCode = value; } } /// /// 探伤结果代码 /// [Description("探伤结果代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("detectResultCode")] public string DetectResultCode { get { return detectResultCode; } set { detectResultCode = value; } } /// /// 表面检验报告目录 /// [Description("表面检验报告目录")] [Nullable(true)] [DataLength(200)] [JsonProperty("faceResultPath")] public string FaceResultPath { get { return faceResultPath; } set { faceResultPath = value; } } /// /// 公差检验报告目录 /// [Description("公差检验报告目录")] [Nullable(true)] [DataLength(200)] [JsonProperty("specResultPath")] public string SpecResultPath { get { return specResultPath; } set { specResultPath = value; } } /// /// 成分检验报告目录 /// [Description("成分检验报告目录")] [Nullable(true)] [DataLength(200)] [JsonProperty("chemResultPath")] public string ChemResultPath { get { return chemResultPath; } set { chemResultPath = value; } } /// /// 理化检验报告目录 /// [Description("理化检验报告目录")] [Nullable(true)] [DataLength(200)] [JsonProperty("phyResultPath")] public string PhyResultPath { get { return phyResultPath; } set { phyResultPath = value; } } /// /// 探伤检验报告目录 /// [Description("探伤检验报告目录")] [Nullable(true)] [DataLength(200)] [JsonProperty("detectResultPath")] public string DetectResultPath { get { return detectResultPath; } set { detectResultPath = value; } } /// /// 质量分组号(同申判单号、炉、批、组的前期下,当表面、公差、成分、理化、控伤、水压、加工七大项的组合值不一样时,组号必须分开) /// [Description("质量分组号")] [Nullable(true)] [DataLength(22)] [JsonProperty("qualityGroup")] public decimal? QualityGroup { get { return qualityGroup; } set { qualityGroup = value; } } /// /// 物料码 /// [Description("物料码")] [Nullable(true)] [DataLength(40)] [JsonProperty("materialNo")] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 物料描叙 /// [Description("物料描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("materialName")] public string MaterialName { get { return materialName; } set { materialName = value; } } /// /// 品名代码 /// [Description("品名代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("produccode")] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("producname")] public string Producname { get { return producname; } set { producname = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [Nullable(true)] [DataLength(10)] [JsonProperty("gradecode")] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种名称")] [Nullable(true)] [DataLength(100)] [JsonProperty("gradename")] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 产品规格代码 /// [Description("产品规格代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("specCode")] public string SpecCode { get { return specCode; } set { specCode = value; } } /// /// 产品规格描述 /// [Description("产品规格描述")] [Nullable(true)] [DataLength(100)] [JsonProperty("specName")] public string SpecName { get { return specName; } set { specName = value; } } /// /// 标准代码 /// [Description("标准代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdCode")] public string StdCode { get { return stdCode; } set { stdCode = value; } } /// /// 标准名称 /// [Description("标准名称")] [Nullable(true)] [DataLength(256)] [JsonProperty("stdName")] public string StdName { get { return stdName; } set { stdName = value; } } /// /// 标准类别代码 /// [Description("标准类别代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("stdStyle")] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } /// /// 标准类别描述(PSL1....) /// [Description("标准类别描述")] [Nullable(true)] [DataLength(50)] [JsonProperty("stdStyleDesc")] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 工艺文件号 /// [Description("工艺文件号")] [Nullable(true)] [DataLength(100)] [JsonProperty("crafNo")] public string CrafNo { get { return crafNo; } set { crafNo = value; } } /// /// 生产产线名称 /// [Description("生产产线")] [Nullable(true)] [DataLength(100)] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 生产合同号(合同号) /// [Description("生产订单号(计划)")] [Nullable(true)] [DataLength(20)] [JsonProperty("proOrderNo")] public string ProOrderNo { get { return proOrderNo; } set { proOrderNo = value; } } /// /// 材料去向代码 /// [Description("材料去向代码")] [Nullable(true)] [DataLength(20)] [JsonProperty("matGowhereCode")] public string MatGowhereCode { get { return matGowhereCode; } set { matGowhereCode = value; } } /// /// 材料去向 /// [Description("材料去向")] [Nullable(true)] [DataLength(40)] [JsonProperty("matGowhereName")] public string MatGowhereName { get { return matGowhereName; } set { matGowhereName = value; } } /// /// 综合判定结果代码 /// [Description("综合判定结果代码")] [Nullable(true)] [DataLength(10)] [JsonProperty("judgeResultCode")] public string JudgeResultCode { get { return judgeResultCode; } set { judgeResultCode = value; } } /// /// 综合判定结果 /// [Description("综合判定结果")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeResult")] public string JudgeResult { get { return judgeResult; } set { judgeResult = value; } } /// /// 综合判定时间 /// [Description("综合判定时间")] [Nullable(true)] [JsonProperty("judgeResultTime")] public string JudgeResultTime { get { return judgeResultTime; } set { judgeResultTime = value; } } /// /// 综合判定人 /// [Description("综合判定人")] [Nullable(true)] [DataLength(20)] [JsonProperty("judgeMaker")] public string JudgeMaker { get { return judgeMaker; } set { judgeMaker = value; } } /// /// 是否已处理后工序炉计划 /// [Description("是否已处理后工序炉计划")] [Nullable(true)] [DataLength(1)] [JsonProperty("ifSetZyPlan")] public string IfSetZyPlan { get { return ifSetZyPlan; } set { ifSetZyPlan = value; } } /// /// 探伤等级 /// [Description("探伤等级")] [Nullable(true)] [DataLength(20)] [JsonProperty("testingGrade")] public string TestingGrade { get { return testingGrade; } set { testingGrade = value; } } /// /// 探伤种类 /// [Description("探伤种类")] [Nullable(true)] [DataLength(20)] [JsonProperty("testingType")] public string TestingType { get { return testingType; } set { testingType = value; } } /// /// 交货行主键 /// [Description("交货行主键")] [Nullable(true)] [DataLength(40)] [JsonProperty("ordLnDlyPk")] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 送判状态 (0 正常送判,1退判) /// [Description("送判状态")] [Nullable(true)] [DataLength(1)] [JsonProperty("applyFlag")] public string ApplyFlag { get { return applyFlag; } set { applyFlag = value; } } /// /// 退判原因 /// [Description("退判原因")] [Nullable(true)] [DataLength(200)] [JsonProperty("backJugdeMemo")] public string BackJugdeMemo { get { return backJugdeMemo; } set { backJugdeMemo = value; } } /// /// 状态(00:初使状态;10:正在处理;20:已判定) /// [Description("状态")] [Nullable(false)] [DataLength(2)] [JsonProperty("validflag")] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 申判人 /// [Description("申判人")] [Nullable(true)] [DataLength(20)] [JsonProperty("applyName")] public string ApplyName { get { return applyName; } set { applyName = value; } } /// /// 申判时间 /// [Description("申判时间")] [Nullable(true)] [JsonProperty("applyTime")] public string ApplyTime { get { return applyTime; } set { applyTime = value; } } /// /// 申请判定备注 /// [Description("申请判定备注")] [Nullable(true)] [DataLength(500)] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } } }