using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.YdmStuffManage.Entity
{
public class PlnSteelforOrdEntity
{
///
/// 虚拟炉号
///
private string furnaceno = "";
///
/// 顺序号(虚拟炉号)
///
private string sequenceno = "";
///
/// 浇次号
///
private string castNo = "";
///
/// 浇次顺序号(×)
///
private string sequenceincast = "";
///
/// 状态(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 decimal? lenGpSingle = null;
///
/// 倍尺数
///
private decimal? cutNumGp = null;
///
/// 倍尺长度(mm)
///
private decimal? lengthM = null;
///
/// 单倍坯重
///
private decimal? weightGpOne = null;
///
/// 倍尺单重
///
private decimal? weightM = null;
///
/// 倍尺坯重量(计划吨)
///
private decimal? totWeightM = null;
///
/// 倍尺坯支数(计划支)
///
private decimal? 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 decimal? dMumM = null;
///
/// 铸造产线编码
///
private string plineCode = "";
///
/// 铸造产线描述
///
private string plineName = "";
///
/// 电炉产线编码
///
private string efPlineCode = "";
///
/// 电炉产线描述
///
private string efPlineName = "";
///
/// 无注释
///
private string wic = "";
///
/// 无注释
///
private string gic = "";
///
/// 合同号
///
private string orderNo = "";
///
/// 合并编号
///
private string mergeNo = "";
///
/// 钢级代码
///
private string steelcode = "";
///
/// 钢级
///
private string steelname = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名
///
private string producname = "";
private string cutNum = "";
///
/// 钢级代码
///
[Description("分切")]
[Nullable(false)]
[DataLength(20)]
public string CutNum
{
get { return cutNum; }
set { cutNum = value; }
}
///
/// 钢级代码
///
[Description("钢级代码")]
[Nullable(false)]
[DataLength(20)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 钢级
///
[Description("钢级")]
[Nullable(false)]
[DataLength(20)]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 品名代码
///
[Description("品名代码")]
[Nullable(false)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 品名
///
[Description("品名")]
[Nullable(false)]
[DataLength(20)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 合同编号
///
[Description("合并编号")]
[Nullable(false)]
[DataLength(128)]
public string MergeNo
{
get { return mergeNo; }
set { mergeNo = value; }
}
///
/// 合同号
///
[Description("合同号")]
[Nullable(false)]
[DataLength(20)]
public string OrderNo
{
get { return orderNo; }
set { orderNo = value; }
}
///
/// 虚拟炉号
///
[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 Sequenceincast
{
get { return sequenceincast; }
set { sequenceincast = value; }
}
///
/// 状态(0=组炉,1=组浇,2=下发)????
///
[Description("状态(0=组炉,1=组浇,2=下发)????")]
[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("单倍坯长(mm)")]
[Nullable(true)]
[DataLength(10)]
public decimal? LenGpSingle
{
get { return lenGpSingle; }
set { lenGpSingle = value; }
}
///
/// 倍尺数
///
[Description("倍尺数")]
[Nullable(true)]
[DataLength(5)]
public decimal? CutNumGp
{
get { return cutNumGp; }
set { cutNumGp = value; }
}
///
/// 倍尺长度(mm)
///
[Description("倍尺长度(mm)")]
[Nullable(true)]
[DataLength(10)]
public decimal? 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 decimal? TotMumM
{
get { return totMumM; }
set { totMumM = value; }
}
///
/// 管坯类型(1铸坯2锻坯)
///
[Description("管坯类型(1铸坯2锻坯)")]
[Nullable(true)]
[DataLength(20)]
public string Gptype
{
get { return gptype; }
set { gptype = value; }
}
///
/// 铸造类型(1连铸2模铸)
///
[Description("铸造类型(1连铸2模铸)")]
[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("余材类型(1生产超量2开浇加量3尾炉加量4连浇前炉加量5连浇后炉加量)")]
[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("是否已轧管组批 (0未组批 1 已组批 2 坯料下线)???")]
[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("铸造计划类型:00=正常;10=表检返线;20=下线返线")]
[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(10)]
public decimal? DMumM
{
get { return dMumM; }
set { dMumM = 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(50)]
public string Wic
{
get { return wic; }
set { wic = value; }
}
///
/// 无注释
///
[Description("无注释")]
[Nullable(true)]
[DataLength(50)]
public string Gic
{
get { return gic; }
set { gic = value; }
}
}
}