using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; namespace com.steering.pss.ydm.entity { public class MatInfoEntity { private string judgeResultTime; [Description("入库时间")] public string JudgeResultTime { get { return judgeResultTime; } set { judgeResultTime = value; } } private string judgeStoveNo; [Description("炉号")] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } private string batchNo; [Description("批号")] public string BatchNo { get { return batchNo; } set { batchNo = value; } } private string batchGroudNo; [Description("组号")] public string BatchGroudNo { get { return batchGroudNo; } set { batchGroudNo = value; } } private string storageNo; [Description("仓库号代码")] public string StorageNo { get { return storageNo; } set { storageNo = value; } } private string storageName; [Description("出库地点")] public string StorageName { get { return storageName; } set { storageName = value; } } private string vstel; [Description("装车地点")] public string Vstel { get { return vstel; } set { vstel = value; } } private string vstelDesc; public string VstelDesc { get { return vstelDesc; } set { vstelDesc = value; } } private string boundNum; [Description("捆数")] public string BoundNum { get { return boundNum; } set { boundNum = value; } } //private string VstelDesc; private string locationNo; [Description("料位号")] public string LocationNo { get { return locationNo; } set { locationNo = value; } } private string locationName; [Description("料位")] public string LocationName { get { return locationName; } set { locationName = value; } } private string steelcode; [Description("钢级牌号代码")] public string Steelcode { get { return steelcode; } set { steelcode = value; } } private string steelname; [Description("钢级牌号")] public string Steelname { get { return steelname; } set { steelname = value; } } private string produccode; [Description("品名代码")] public string Produccode { get { return produccode; } set { produccode = value; } } private string producname; [Description("品名")] public string Producname { get { return producname; } set { producname = value; } } private string stdCode; [Description("标准代码")] public string StdCode { get { return stdCode; } set { stdCode = value; } } private string stdName; [Description("标准名称")] public string StdName { get { return stdName; } set { stdName = value; } } private string stdStyle; [Description("标准类别代码")] public string StdStyle { get { return stdStyle; } set { stdStyle = value; } } private string stdStyleDesc; [Description("标准类别")] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } private string specCode; [Description("规格代码")] public string SpecCode { get { return specCode; } set { specCode = value; } } private string specName; [Description("产品规格")] public string SpecName { get { return specName; } set { specName = value; } } private string modelCode; [Description("扣型代码")] public string ModelCode { get { return modelCode; } set { modelCode = value; } } private string modelDesc; [Description("扣型")] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } private object actCount; [Description("支")] public object ActCount { get { return actCount; } set { actCount = value; } } private string actWeight; [Description("吨")] public string ActWeight { get { return actWeight; } set { actWeight = value; } } private string actLen; [Description("长度")] public string ActLen { get { return actLen; } set { actLen = value; } } private string ybCount; [Description("支")] public string YbCount { get { return ybCount; } set { ybCount = value; } } private string ybWeight; [Description("吨")] public string YbWeight { get { return ybWeight; } set { ybWeight = value; } } private string ybLen; [Description("长度")] public string YbLen { get { return ybLen; } set { ybLen = value; } } private string kcCount; [Description("支")] public string KcCount { get { return kcCount; } set { kcCount = value; } } private string kcWeight; [Description("吨")] public string KcWeight { get { return kcWeight; } set { kcWeight = value; } } private string kcLen; [Description("长度")] public string KcLen { get { return kcLen; } set { kcLen = value; } } private string ordPk; public string OrdPk { get { return ordPk; } set { ordPk = value; } } private string ordLnPk; public string OrdLnPk { get { return ordLnPk; } set { ordLnPk = value; } } private string ordLnDlyPk; public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } private string actLenMax; [Description("上限")] public string ActLenMax { get { return actLenMax; } set { actLenMax = value; } } private string actLenMin; [Description("下限")] public string ActLenMin { get { return actLenMin; } set { actLenMin = value; } } private string sendNum; [Description("实发数")] public string SendNum { get { return sendNum; } set { sendNum = value; } } private string finishproMold; [Description("成品区分")] public string FinishproMold { get { return finishproMold; } set { finishproMold = value; } } private string inMold; [Description("入库区分")] public string InMold { get { return inMold; } set { inMold = value; } } private string memo; [Description("备注")] public string Memo { get { return memo; } set { memo = value; } } private string plineName = ""; [Description("产线")] public string PlineName { get { return plineName; } set { plineName = value; } } private string plineCode = ""; [Description("产线代码")] public string PlineCode { get { return plineCode; } set { plineCode = value; } } private string zbsFlag = ""; [Description("质保书来源")] public string ZbsFlag { get { return zbsFlag; } set { zbsFlag = value; } } private string judgeResultCode = ""; [Description("综合判定结果")] public string JudgeResultCode { get { return judgeResultCode; } set { judgeResultCode = value; } } private string measuringSeq; [Description("喷印管号")] public string MeasuringSeq { get { return measuringSeq; } set { measuringSeq = value; } } private string matNo; [Description("材料号")] public string MatNo { get { return matNo; } set { matNo = value; } } } }