using Newtonsoft.Json; using System.ComponentModel; namespace Core.StlMes.Client.Judge.Models { /// /// 数据库表PLN_STEELFOR_ORD所对应的实体类(生成工具:代码生成工具4.0 访问地址:http://172.16.2.128/tool/) /// 作者:tgcx-test 时间:2017-08-16 /// public class PlnSteelforOrdEntity { /// /// 虚拟炉次号(ID) /// private string furnaceno = ""; /// /// 虚拟炉次内顺序号 /// private string sequenceno = ""; /// /// 虚拟炉次顺序号(不同电炉产线顺序独立连续) /// private string furnacenoSeq = ""; /// /// 铸造订单编号 /// private string proPlanId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 浇次号 /// private string castNo = ""; /// /// 浇次顺序号(不同铸机顺序独立连续) /// private string castSeq = ""; /// /// 浇次内炉顺序号(单一浇次) /// private string castStoveSeq = ""; /// /// 连铸顺序号(不同铸机产线顺序独立连续) /// private string ccmSeq = ""; /// /// 冶炼炉号(电炉号) /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 判定炉号序号 /// private string judgeStoveNoSeq = ""; /// /// 标示炉号(打印炉号) /// private string flagStoveNo = ""; /// /// 生产状态(00=组炉,10=组浇,20=下发,30生产中,40已生产,50关闭) /// private string status = ""; /// /// 工序点执行状态:00=初始状态;10=切割完成;20=表检完成;30=下线 /// private string ccmState = ""; /// /// 铸造计划类型:00=正常;10=表检返线;20=下线返线 /// private string ccmPlnType = ""; /// /// 管坯类型(1铸坯2锻坯) /// private string gptype = ""; /// /// 铸造类型(1连铸2模铸) /// private string castingtype = ""; /// /// 铸造产线编码 /// private string plineCode = ""; /// /// 铸造产线描述 /// private string plineName = ""; /// /// 铸机号 /// private string ccmid = ""; /// /// 铸流号 /// private string flowno = ""; /// /// 电炉产线编码 /// private string efPlineCode = ""; /// /// 电炉产线描述 /// private string efPlineName = ""; /// /// 投入物料编码 /// private string wlidIn = ""; /// /// 投入物料描述 /// private string wldescIn = ""; /// /// 产出物料编码 /// private string materialNo = ""; /// /// 产出物料描述 /// private string materialName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 管坯直径 /// private string diameter = null; /// /// 单倍坯长(mm) /// private decimal? lenGpSingle = null; /// /// 倍尺数 /// private decimal? cutNumGp = null; /// /// 倍尺长度(mm) /// private decimal? lengthM = null; /// /// 单倍坯重 /// private decimal? weightGpOne = null; /// /// 倍尺单重 /// private decimal? weightM = null; /// /// 倍尺坯支数(计划) /// private decimal? totMumM = null; /// /// 倍尺坯重量(计划) /// private decimal? totWeightM = null; /// /// 倍尺坯重量(实绩吨) /// private decimal? actWeightM = null; /// /// 倍尺坯支数(实绩支) /// private decimal? actMumM = null; /// /// 是否余材(0订单材1余材) /// private string surplusflag = ""; /// /// 余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量) /// private string surplusType = ""; /// /// 余材参照铸造订单号 /// private string refOrdZz = ""; /// /// 余材参照管坯需求号 /// private string refGpreqId = ""; /// /// 是否余材已再分配 /// private string ifSurplusAlloted = ""; /// /// 成分标准索引号(内控) /// private string cic = ""; /// /// 材质标准索引号(内控) /// private string pic = ""; /// /// 公差标准索引号(内控) /// private string sic = ""; /// /// 探伤索引号(内控) /// private string dic = ""; /// /// 备注 /// private string memo = ""; /// /// 制定人 /// private string makeman = ""; /// /// 制定时间 /// private string maketime = ""; /// /// 下发人 /// private string downman = ""; /// /// 下发时间 /// private string downtime = ""; /// /// 虚拟炉次号(ID) /// [Description("虚拟炉次号(ID)")] [JsonProperty("furnaceno")] public string Furnaceno { get { return furnaceno; } set { furnaceno = value; } } /// /// 虚拟炉次内顺序号 /// [Description("虚拟炉次内顺序号")] [JsonProperty("sequenceno")] public string Sequenceno { get { return sequenceno; } set { sequenceno = value; } } /// /// 虚拟炉次顺序号(不同电炉产线顺序独立连续) /// [Description("虚拟炉次顺序号")] [JsonProperty("furnacenoSeq")] public string FurnacenoSeq { get { return furnacenoSeq; } set { furnacenoSeq = value; } } /// /// 铸造订单编号 /// [Description("铸造订单编号")] [JsonProperty("proPlanId")] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 工序排产序号 /// [Description("工序排产序号")] [JsonProperty("gxPlanNo")] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 浇次号 /// [Description("浇次号")] [JsonProperty("castNo")] public string CastNo { get { return castNo; } set { castNo = value; } } /// /// 浇次顺序号(不同铸机顺序独立连续) /// [Description("浇次顺序号")] [JsonProperty("castSeq")] public string CastSeq { get { return castSeq; } set { castSeq = value; } } /// /// 浇次内炉顺序号(单一浇次) /// [Description("浇次内炉顺序号")] [JsonProperty("castStoveSeq")] public string CastStoveSeq { get { return castStoveSeq; } set { castStoveSeq = value; } } /// /// 连铸顺序号(不同铸机产线顺序独立连续) /// [Description("连铸顺序号")] [JsonProperty("ccmSeq")] public string CcmSeq { get { return ccmSeq; } set { ccmSeq = value; } } /// /// 冶炼炉号(电炉号) /// [Description("冶炼炉号(电炉号)")] [JsonProperty("stoveNo")] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [JsonProperty("judgeStoveNo")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 判定炉号序号 /// [Description("判定炉号序号")] [JsonProperty("judgeStoveNoSeq")] public string JudgeStoveNoSeq { get { return judgeStoveNoSeq; } set { judgeStoveNoSeq = value; } } /// /// 标示炉号(打印炉号) /// [Description("标示炉号(打印炉号)")] [JsonProperty("flagStoveNo")] public string FlagStoveNo { get { return flagStoveNo; } set { flagStoveNo = value; } } /// /// 生产状态(00=组炉,10=组浇,20=下发,30生产中,40已生产,50关闭) /// [Description("生产状态")] [JsonProperty("status")] public string Status { get { return status; } set { status = value; } } /// /// 工序点执行状态:00=初始状态;10=切割完成;20=表检完成;30=下线 /// [Description("工序点执行状态")] [JsonProperty("ccmState")] public string CcmState { get { return ccmState; } set { ccmState = value; } } /// /// 铸造计划类型:00=正常;10=表检返线;20=下线返线 /// [Description("铸造计划类型")] [JsonProperty("ccmPlnType")] public string CcmPlnType { get { return ccmPlnType; } set { ccmPlnType = value; } } /// /// 管坯类型(1铸坯2锻坯) /// [Description("管坯类型")] [JsonProperty("gptype")] public string Gptype { get { return gptype; } set { gptype = value; } } /// /// 铸造类型(1连铸2模铸) /// [Description("铸造类型")] [JsonProperty("castingtype")] public string Castingtype { get { return castingtype; } set { castingtype = value; } } /// /// 铸造产线编码 /// [Description("铸造产线")] [JsonProperty("plineCode")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 铸造产线描述 /// [Description("铸造产线")] [JsonProperty("plineName")] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 铸机号 /// [Description("铸机号")] [JsonProperty("ccmid")] public string Ccmid { get { return ccmid; } set { ccmid = value; } } /// /// 铸流号 /// [Description("铸流号")] [JsonProperty("flowno")] public string Flowno { get { return flowno; } set { flowno = value; } } /// /// 电炉产线编码 /// [Description("电炉产线")] [JsonProperty("efPlineCode")] public string EfPlineCode { get { return efPlineCode; } set { efPlineCode = value; } } /// /// 电炉产线描述 /// [Description("电炉产线")] [JsonProperty("efPlineName")] public string EfPlineName { get { return efPlineName; } set { efPlineName = value; } } /// /// 投入物料编码 /// [Description("投入物料")] [JsonProperty("wlidIn")] public string WlidIn { get { return wlidIn; } set { wlidIn = value; } } /// /// 投入物料描述 /// [Description("投入物料")] [JsonProperty("wldescIn")] public string WldescIn { get { return wldescIn; } set { wldescIn = value; } } /// /// 产出物料编码 /// [Description("产出物料")] [JsonProperty("materialNo")] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 产出物料描述 /// [Description("产出物料")] [JsonProperty("materialName")] public string MaterialName { get { return materialName; } set { materialName = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [JsonProperty("gradecode")] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种名称")] [JsonProperty("gradename")] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 管坯直径 /// [Description("管坯直径")] [JsonProperty("diameter")] public string Diameter { get { return diameter; } set { diameter = value; } } /// /// 单倍坯长(mm) /// [Description("单倍坯长(mm)")] [JsonProperty("lenGpSingle")] public decimal? LenGpSingle { get { return lenGpSingle; } set { lenGpSingle = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [JsonProperty("cutNumGp")] public decimal? CutNumGp { get { return cutNumGp; } set { cutNumGp = value; } } /// /// 倍尺长度(mm) /// [Description("倍尺长度(mm)")] [JsonProperty("lengthM")] public decimal? LengthM { get { return lengthM; } set { lengthM = value; } } /// /// 单倍坯重 /// [Description("单倍坯重")] [JsonProperty("weightGpOne")] public decimal? WeightGpOne { get { return weightGpOne; } set { weightGpOne = value; } } /// /// 倍尺单重 /// [Description("倍尺单重")] [JsonProperty("weightM")] public decimal? WeightM { get { return weightM; } set { weightM = value; } } /// /// 倍尺坯支数(计划) /// [Description("倍尺坯支数(计划)")] [JsonProperty("totMumM")] public decimal? TotMumM { get { return totMumM; } set { totMumM = value; } } /// /// 倍尺坯重量(计划) /// [Description("倍尺坯重量(计划)")] [JsonProperty("totWeightM")] public decimal? TotWeightM { get { return totWeightM; } set { totWeightM = value; } } /// /// 倍尺坯重量(实绩吨) /// [Description("倍尺坯重量(实绩吨)")] [JsonProperty("actWeightM")] public decimal? ActWeightM { get { return actWeightM; } set { actWeightM = value; } } /// /// 倍尺坯支数(实绩支) /// [Description("倍尺坯支数(实绩支)")] [JsonProperty("actMumM")] public decimal? ActMumM { get { return actMumM; } set { actMumM = value; } } /// /// 是否余材(0订单材1余材) /// [Description("是否余材")] [JsonProperty("surplusflag")] public string Surplusflag { get { return surplusflag; } set { surplusflag = value; } } /// /// 余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量) /// [Description("余材类型")] [JsonProperty("surplusType")] public string SurplusType { get { return surplusType; } set { surplusType = value; } } /// /// 余材参照铸造订单号 /// [Description("余材参照铸造订单号")] [JsonProperty("refOrdZz")] public string RefOrdZz { get { return refOrdZz; } set { refOrdZz = value; } } /// /// 余材参照管坯需求号 /// [Description("余材参照管坯需求号")] [JsonProperty("refGpreqId")] public string RefGpreqId { get { return refGpreqId; } set { refGpreqId = value; } } /// /// 是否余材已再分配 /// [Description("是否余材已再分配")] [JsonProperty("ifSurplusAlloted")] public string IfSurplusAlloted { get { return ifSurplusAlloted; } set { ifSurplusAlloted = value; } } /// /// 成分标准索引号(内控) /// [Description("成分标准索引号(内控)")] [JsonProperty("cic")] public string Cic { get { return cic; } set { cic = value; } } /// /// 材质标准索引号(内控) /// [Description("材质标准索引号(内控)")] [JsonProperty("pic")] public string Pic { get { return pic; } set { pic = value; } } /// /// 公差标准索引号(内控) /// [Description("公差标准索引号(内控)")] [JsonProperty("sic")] public string Sic { get { return sic; } set { sic = value; } } /// /// 探伤索引号(内控) /// [Description("探伤索引号(内控)")] [JsonProperty("dic")] public string Dic { get { return dic; } set { dic = value; } } /// /// 备注 /// [Description("备注")] [JsonProperty("memo")] public string Memo { get { return memo; } set { memo = value; } } /// /// 制定人 /// [Description("制定人")] [JsonProperty("makeman")] public string Makeman { get { return makeman; } set { makeman = value; } } /// /// 制定时间 /// [Description("制定时间")] [JsonProperty("maketime")] public string Maketime { get { return maketime; } set { maketime = value; } } /// /// 下发人 /// [Description("下发人")] [JsonProperty("downman")] public string Downman { get { return downman; } set { downman = value; } } /// /// 下发时间 /// [Description("下发时间")] [JsonProperty("downtime")] public string Downtime { get { return downtime; } set { downtime = value; } } } }