using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.Mcp.Treatment.Entity { public class MchRunEntity { /// /// 炉号 /// private string judgeStoveNo = ""; /// /// 批号 /// private string batchNo = ""; /// /// 组号(长度分组) /// private string batchGroudNo = ""; /// /// 物料码 /// private string materialNo = ""; /// /// 物料描叙 /// private string materialName = ""; /// /// 品名代码 /// private string produccode = ""; /// /// 品名描述 /// private string producname = ""; /// /// 钢级(牌号)代码 /// private string steelcode = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 产品规格代码 /// private string specCode = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 扣型代码 /// private string modelCode = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 标准代码 /// private string stdCode = ""; /// /// 标准名称 /// private string stdName = ""; /// /// 标准类别代码 /// private string stdStyle = ""; /// /// 标准类别描述(PSL1....) /// private string stdStyleDesc = ""; /// /// 外径 /// private decimal? dimater = null; /// /// 壁厚 /// private decimal? height = null; /// /// 长度(实际) /// private decimal? len = null; /// /// 长度下限 /// private decimal? lenMin = null; /// /// 长度上限 /// private decimal? lenMax = null; /// /// 材料支数(实际) /// private decimal? actCount = null; /// /// 材料实重(实际) /// private decimal? actWeight = null; /// /// 生产合同号 /// private string proOrderNo = ""; /// /// 生产订单号 /// private string proOrderId = ""; /// /// 合同主键 /// private string ordPk = ""; /// /// 合同行主键 /// private string ordLnPk = ""; /// /// 交货行主键 /// private string ordLnDlyPk = ""; /// /// 合同号 /// private string orderNo = ""; /// /// 合同行号 /// private string orderSeq = ""; /// /// 交货行号 /// private string orderSeqNo = ""; /// /// 备注 /// private string memo = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 期初日期(YYYYMMDD) /// private string originalDate = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线名称 /// private string plineName = ""; /// /// 产线名称 /// private string plineNameIn = ""; /// /// 产线名称 /// private string plineNameOut = ""; /// /// 结转处理标志(0未处理、1已处理) /// private string handleLog = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 合同用户(最终用户/客户名) /// private string finalUserDesc = ""; /// /// 结算日期(年月) /// [Description("结算年月")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } [Description("品名代码")] [Nullable(true)] [DataLength(20)] public string Produccode { get { return produccode; } set { produccode = value; } } /// /// 品名描述 /// [Description("品名描述")] [Nullable(true)] [DataLength(100)] public string Producname { get { return producname; } set { producname = value; } } /// /// 钢级(牌号)代码 /// [Description("钢级")] [Nullable(true)] [DataLength(10)] public string Steelcode { get { return steelcode; } set { steelcode = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = 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(5)] public decimal? Dimater { get { return dimater; } set { dimater = value; } } /// /// 壁厚 /// [Description("壁厚")] [Nullable(true)] [DataLength(4)] public decimal? Height { get { return height; } set { height = value; } } /// /// 扣型代码 /// [Description("扣型代码")] [Nullable(true)] [DataLength(20)] public string ModelCode { get { return modelCode; } set { modelCode = value; } } /// /// 扣型描述 /// [Description("扣型描述")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 合同号 /// [Description("合同号")] [Nullable(true)] [DataLength(100)] public string ProOrderNo { get { return proOrderNo; } set { proOrderNo = value; } } /// /// 炉号 /// [Description("炉号")] [Nullable(false)] [DataLength(6)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 批号 /// [Description("批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 期初支 /// [Description("期初支")] [Nullable(true)] [DataLength(20)] public string BegNum { get; set; } /// /// 期初吨 /// [Description("期初吨")] [Nullable(true)] [DataLength(20)] public string BegWt { get; set; } /// /// 产线名称 /// [Description("入库产线")] [Nullable(true)] [DataLength(100)] public string PlineNameIn { get { return plineNameIn; } set { plineNameIn = value; } } /// /// 入库支 /// [Description("入库支")] [Nullable(true)] [DataLength(20)] public string InNum { get; set; } /// /// 入库吨 /// [Description("入库吨")] [Nullable(true)] [DataLength(20)] public string InWt { get; set; } /// /// 入库地点 /// [Description("入库地点")] [Nullable(true)] [DataLength(20)] public string InStorage { get; set; } /// /// 结算日期(年月) /// [Description("入库年月")] [Nullable(true)] [DataLength(6)] public string InYearMonth { get; set; } /// /// 产线名称 /// [Description("出库产线")] [Nullable(true)] [DataLength(100)] public string PlineNameOut { get { return plineNameOut; } set { plineNameOut = value; } } /// /// 入库支 /// [Description("出库支")] [Nullable(true)] [DataLength(20)] public string OutNum { get; set; } /// /// 入库吨 /// [Description("出库吨")] [Nullable(true)] [DataLength(20)] public string OutWt { get; set; } /// /// 期初支 /// [Description("期末支")] [Nullable(true)] [DataLength(20)] public string EndNum { get; set; } /// /// 期初吨 /// [Description("期末吨")] [Nullable(true)] [DataLength(20)] public string EndWt { get; set; } } }