using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.LgClassModel { /// /// 数据库表PLN_STEELFOR_ORD所对应的实体类(生成工具:代码生成工具3.0) /// 作者:zhou 时间:2017-08-03 /// public class PlnSteelforOrdEntity { /// /// 虚拟炉号 /// private string furnaceno = ""; /// /// 顺序号(虚拟炉号) /// private string sequenceno = ""; /// /// 浇次号 /// private string castNo = ""; /// /// 浇次顺序号 /// private string castSeq = ""; /// /// 浇内顺序号 /// private string castStoveSeq = ""; /// /// 状态(0=组炉,1=组浇,2=下发) /// private string status = ""; /// /// 铸造订单编号 /// private string proPlanId = ""; /// /// 工序排产序号 /// private string gxPlanNo = ""; /// /// 管坯需求编号 /// private string gpreqId = ""; /// /// 铸造坯物料编码 /// private string materialNo = ""; /// /// 铸造坯物料描述 /// private string materialName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 管坯直径 /// private string diameter = null; /// /// 单倍坯长(mm) /// private double? lenGpSingle = null; /// /// 倍尺数 /// private double? cutNumGp = null; /// /// 倍尺长度(mm) /// private double? lengthM = null; /// /// 单倍坯重 /// private decimal? weightGpOne = null; /// /// 倍尺单重 /// private decimal? weightM = null; /// /// 倍尺坯重量(计划吨) /// private decimal? totWeightM = null; /// /// 倍尺坯支数(计划支) /// private double? totMumM = null; /// /// 管坯类型(1铸坯2锻坯) /// private string gptype = ""; /// /// 铸造类型(1连铸2模铸) /// private string castingtype = ""; /// /// 切割方式 /// private string cuttype = ""; /// /// 是否余材(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 = ""; /// /// 是否已轧管组批 (0未组批 1 已组批 2 坯料下线) /// private string ifBatchedZg = ""; /// /// 轧管组批支数 /// private decimal? batchedNum = null; /// /// 备注 /// private string memo = ""; /// /// 制定人 /// private string makeman = ""; /// /// 制定时间 /// private string maketime = ""; /// /// 投入物料编码 /// private string wlidIn = ""; /// /// 投入物料描述 /// private string wldescIn = ""; /// /// 铸机号 /// private string ccmid = ""; /// /// 冶炼炉号(电炉号) /// private string stoveNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 标示炉号(打印炉号) /// private string flagStoveNo = ""; /// /// 作业状态:00=初始状态;10=切割完成;20=表检完成;30=下线 /// private string ccmState = ""; /// /// 铸造计划类型:00=正常;10=表检返线;20=下线返线 /// private string ccmPlnType = ""; /// /// 判定炉号序号 /// private string judgeStoveNoSeq = ""; /// /// 铸流号 /// private string flowno = ""; /// /// 铸造产线编码 /// private string plineCode = ""; /// /// 铸造产线描述 /// private string plineName = ""; /// /// 电炉产线编码 /// private string efPlineCode = ""; /// /// 电炉产线描述 /// private string efPlineName = ""; /// /// 炉次顺序号(不同电炉产线顺序独立连续) /// private string furnacenoSeq = ""; /// /// 连铸顺序号(不同铸机产线顺序独立连续) /// private string ccmSeq = ""; /// /// 倍尺坯重量(实绩吨) /// private decimal? actWeightM = null; /// /// 倍尺坯支数(实绩支) /// private decimal? actMumM = null; /// /// 无注释 /// private string wic = ""; /// /// 无注释 /// private string gic = ""; /// /// 选择 /// [Description("选择")] public bool Check { get; set; } /// /// 虚拟炉号 /// [Description("炉次号")] [Nullable(false)] [DataLength(20)] public string Furnaceno { get { return furnaceno; } set { furnaceno = value; } } /// /// 顺序号(虚拟炉号) /// [Description("炉次内序号")] [Nullable(false)] [DataLength(20)] public string Sequenceno { get { return sequenceno; } set { sequenceno = value; } } /// /// 浇次号 /// [Description("浇次号")] [Nullable(true)] [DataLength(20)] public string CastNo { get { return castNo; } set { castNo = value; } } /// /// 浇次顺序号(不同铸机顺序独立连续) /// [Description("浇次顺序号")] [Nullable(true)] [DataLength(20)] public string CastSeq { get { return castSeq; } set { castSeq = value; } } /// /// 浇内顺序号 /// [Description("浇次内序号")] [Nullable(true)] [DataLength(20)] public string CastStoveSeq { get { return castStoveSeq; } set { castStoveSeq = value; } } /// /// 状态(0=组炉,1=组浇,2=下发) /// [Description("状态")] [Nullable(true)] [DataLength(20)] public string Status { get { return status; } set { status = value; } } /// /// 铸造订单编号 /// [Description("铸造订单")] [Nullable(true)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 工序排产序号 /// [Description("铸造订单序号")] [Nullable(true)] [DataLength(10)] public string GxPlanNo { get { return gxPlanNo; } set { gxPlanNo = value; } } /// /// 管坯需求编号 /// [Description("管坯需求编号")] [Nullable(true)] [DataLength(20)] public string GpreqId { get { return gpreqId; } set { gpreqId = value; } } /// /// 铸造坯物料编码 /// [Description("铸造坯物料编码")] [Nullable(true)] [DataLength(20)] public string MaterialNo { get { return materialNo; } set { materialNo = value; } } /// /// 铸造坯物料描述 /// [Description("产出物料")] [Nullable(true)] [DataLength(100)] public string MaterialName { get { return materialName; } set { materialName = value; } } /// /// 钢种代码 /// [Description("钢种代码")] [Nullable(true)] [DataLength(10)] public string Gradecode { get { return gradecode; } set { gradecode = value; } } /// /// 钢种名称 /// [Description("钢种")] [Nullable(true)] [DataLength(100)] public string Gradename { get { return gradename; } set { gradename = value; } } /// /// 管坯直径 /// [Description("规格")] [Nullable(true)] [DataLength(10)] public string Diameter { get { return diameter; } set { diameter = value; } } /// /// 单倍坯长(mm) /// [Description("单倍长")] [Nullable(true)] [DataLength(10)] public double? LenGpSingle { get { return lenGpSingle; } set { lenGpSingle = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [Nullable(true)] [DataLength(5)] public double? CutNumGp { get { return cutNumGp; } set { cutNumGp = value; } } /// /// 倍尺长度(mm) /// [Description("倍尺长")] [Nullable(true)] [DataLength(10)] public double? LengthM { get { return lengthM; } set { lengthM = value; } } /// /// 单倍坯重 /// [Description("单倍坯重")] [Nullable(true)] [DataLength(10)] public decimal? WeightGpOne { get { return weightGpOne; } set { weightGpOne = value; } } /// /// 倍尺单重 /// [Description("倍尺单重")] [Nullable(true)] [DataLength(10)] public decimal? WeightM { get { return weightM; } set { weightM = value; } } /// /// 倍尺坯重量(计划吨) /// [Description("总重量")] [Nullable(true)] [DataLength(10)] public decimal? TotWeightM { get { return totWeightM; } set { totWeightM = value; } } /// /// 倍尺坯支数(计划支) /// [Description("支数")] [Nullable(true)] [DataLength(10)] public double? TotMumM { get { return totMumM; } set { totMumM = value; } } /// /// 管坯类型(1铸坯2锻坯) /// [Description("管坯类型")] [Nullable(true)] [DataLength(20)] public string Gptype { get { return gptype; } set { gptype = value; } } /// /// 铸造类型(1连铸2模铸) /// [Description("铸造类型")] [Nullable(true)] [DataLength(20)] public string Castingtype { get { return castingtype; } set { castingtype = value; } } /// /// 切割方式 /// [Description("切割方式")] [Nullable(true)] [DataLength(20)] public string Cuttype { get { return cuttype; } set { cuttype = value; } } /// /// 是否余材(0订单材1余材) /// [Description("是否有余材")] [Nullable(true)] [DataLength(1)] public string Surplusflag { get { return surplusflag; } set { surplusflag = value; } } /// /// 余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量) /// [Description("余材类型")] [Nullable(true)] [DataLength(1)] public string SurplusType { get { return surplusType; } set { surplusType = value; } } /// /// 余材参照铸造订单号 /// [Description("余材参照铸造订单号")] [Nullable(true)] [DataLength(1)] public string RefOrdZz { get { return refOrdZz; } set { refOrdZz = value; } } /// /// 余材参照管坯需求号 /// [Description("余材参照管坯需求号")] [Nullable(true)] [DataLength(1)] public string RefGpreqId { get { return refGpreqId; } set { refGpreqId = value; } } /// /// 是否余材已再分配 /// [Description("余材是否再分配")] [Nullable(true)] [DataLength(1)] public string IfSurplusAlloted { get { return ifSurplusAlloted; } set { ifSurplusAlloted = value; } } /// /// 成分标准索引号(内控) /// [Description("成分标准索引号(内控)")] [Nullable(true)] [DataLength(50)] public string Cic { get { return cic; } set { cic = value; } } /// /// 材质标准索引号(内控) /// [Description("材质标准索引号(内控)")] [Nullable(true)] [DataLength(50)] public string Pic { get { return pic; } set { pic = value; } } /// /// 公差标准索引号(内控) /// [Description("公差标准索引号(内控)")] [Nullable(true)] [DataLength(50)] public string Sic { get { return sic; } set { sic = value; } } /// /// 探伤索引号(内控) /// [Description("探伤索引号(内控)")] [Nullable(true)] [DataLength(50)] public string Dic { get { return dic; } set { dic = value; } } /// /// 是否已轧管组批 (0未组批 1 已组批 2 坯料下线) /// [Description("是否已轧管组批 ")] [Nullable(true)] [DataLength(1)] public string IfBatchedZg { get { return ifBatchedZg; } set { ifBatchedZg = value; } } /// /// 轧管组批支数 /// [Description("轧管组批支数")] [Nullable(true)] [DataLength(10)] public decimal? BatchedNum { get { return batchedNum; } set { batchedNum = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Memo { get { return memo; } set { memo = value; } } /// /// 制定人 /// [Description("制定人")] [Nullable(true)] [DataLength(20)] public string Makeman { get { return makeman; } set { makeman = value; } } /// /// 制定时间 /// [Description("制定时间")] [Nullable(true)] public string Maketime { get { return maketime; } set { maketime = value; } } /// /// 投入物料编码 /// [Description("投入物料编码")] [Nullable(true)] [DataLength(20)] public string WlidIn { get { return wlidIn; } set { wlidIn = value; } } /// /// 投入物料描述 /// [Description("投入物料描述")] [Nullable(true)] [DataLength(40)] public string WldescIn { get { return wldescIn; } set { wldescIn = value; } } /// /// 铸机号 /// [Description("铸机号")] [Nullable(true)] [DataLength(20)] public string Ccmid { get { return ccmid; } set { ccmid = value; } } /// /// 冶炼炉号(电炉号) /// [Description("冶炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 标示炉号(打印炉号) /// [Description("标示炉号")] [Nullable(true)] [DataLength(20)] public string FlagStoveNo { get { return flagStoveNo; } set { flagStoveNo = value; } } /// /// 作业状态:00=初始状态;10=切割完成;20=表检完成;30=下线 /// [Description("作业状态")] [Nullable(true)] [DataLength(2)] public string CcmState { get { return ccmState; } set { ccmState = value; } } /// /// 铸造计划类型:00=正常;10=表检返线;20=下线返线 /// [Description("铸造计划类型")] [Nullable(true)] [DataLength(2)] public string CcmPlnType { get { return ccmPlnType; } set { ccmPlnType = value; } } /// /// 判定炉号序号 /// [Description("判定炉号序号")] [Nullable(true)] [DataLength(6)] public string JudgeStoveNoSeq { get { return judgeStoveNoSeq; } set { judgeStoveNoSeq = value; } } /// /// 铸流号 /// [Description("铸流号")] [Nullable(true)] [DataLength(2)] public string Flowno { get { return flowno; } set { flowno = value; } } /// /// 铸造产线编码 /// [Description("铸造产线编码")] [Nullable(true)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 铸造产线描述 /// [Description("铸造产线")] [Nullable(true)] [DataLength(50)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 电炉产线编码 /// [Description("电炉产线编码")] [Nullable(true)] [DataLength(20)] public string EfPlineCode { get { return efPlineCode; } set { efPlineCode = value; } } /// /// 电炉产线描述 /// [Description("电炉产线")] [Nullable(true)] [DataLength(100)] public string EfPlineName { get { return efPlineName; } set { efPlineName = value; } } /// /// 炉次顺序号(不同电炉产线顺序独立连续) /// [Description("炉次顺序号")] [Nullable(true)] [DataLength(20)] public string FurnacenoSeq { get { return furnacenoSeq; } set { furnacenoSeq = value; } } /// /// 连铸顺序号(不同铸机产线顺序独立连续) /// [Description("连铸顺序号")] [Nullable(true)] [DataLength(20)] public string CcmSeq { get { return ccmSeq; } set { ccmSeq = value; } } /// /// 倍尺坯重量(实绩吨) /// [Description("倍尺坯重量(实绩吨)")] [Nullable(true)] [DataLength(10)] public decimal? ActWeightM { get { return actWeightM; } set { actWeightM = value; } } /// /// 倍尺坯支数(实绩支) /// [Description("倍尺坯支数(实绩支)")] [Nullable(true)] [DataLength(10)] public decimal? ActMumM { get { return actMumM; } set { actMumM = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(50)] public string Wic { get { return wic; } set { wic = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(50)] public string Gic { get { return gic; } set { gic = value; } } private long? cutNum = null; /// /// 分切 /// [Description("分切")] [Nullable(true)] [DataLength(10)] public long? CutNum { get { return cutNum; } set { cutNum = value; } } private string gowhereName = ""; /// /// 物流去向名称集合 /// [Description("去向")] [Nullable(true)] [DataLength(512)] public string GowhereName { get { return gowhereName; } set { gowhereName = value; } } } }