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 { /// /// 数据库表FRG_ENTRUSTED_BILL_RESULT所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2017-11-14 /// public class FrgEntrustedBillResultEntity { /// /// 委外单号 /// private string subcontractNo = ""; /// /// 委外单号序号 /// private string subcontractNoSeq = ""; /// /// 倍尺数 /// private decimal? outnumCut = null; /// /// 坯长度 /// private decimal? lengthOut = null; /// /// 合格支数 /// private decimal? actCount = null; /// /// 合格重量 /// private decimal? actWeight = null; /// /// 判定炉号 /// private string judgeStoveNo = ""; [Description("判定炉号")] [Nullable(false)] [DataLength(10)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 直径 /// private string dimaterOut = ""; [Description("直径")] [Nullable(false)] [DataLength(6)] public string DimaterOut { get { return dimaterOut; } set { dimaterOut = value; } } /// /// 单倍长度 /// private string lenGpSingle = ""; [Description("单倍坯长")] [Nullable(false)] [DataLength(10)] public string LenGpSingle { get { return lenGpSingle; } set { lenGpSingle = value; } } /// /// 委外单号 /// [Description("委外单号")] [Nullable(false)] [DataLength(20)] public string SubcontractNo { get { return subcontractNo; } set { subcontractNo = value; } } /// /// 委外单号序号 /// [Description("委外单号序号")] [Nullable(false)] [DataLength(20)] public string SubcontractNoSeq { get { return subcontractNoSeq; } set { subcontractNoSeq = value; } } /// /// 倍尺数 /// [Description("倍尺数")] [Nullable(false)] [DataLength(2)] public decimal? OutnumCut { get { return outnumCut; } set { outnumCut = value; } } /// /// 坯长度 /// [Description("坯长度")] [Nullable(true)] [DataLength(10)] public decimal? LengthOut { get { return lengthOut; } set { lengthOut = value; } } /// /// 合格支数 /// [Description("合格支数")] [Nullable(true)] [DataLength(6)] public decimal? ActCount { get { return actCount; } set { actCount = value; } } /// /// 合格重量 /// [Description("合格重量")] [Nullable(true)] [DataLength(8)] public decimal? ActWeight { get { return actWeight; } set { actWeight = value; } } } }