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 {/// /// 数据库表STL_LG_CASTING_SCRAP_HISTORY所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-01-31 /// public class StlLgCastingScrapHistoryEntity { /// /// 回废单号 /// private string backWasteNo = ""; /// /// 熔炼炉号 /// private string stoveNo = ""; /// /// 浇次号 /// private string castNo = ""; /// /// 物料码 /// private string materialNo = ""; /// /// 物料描叙 /// private string materialName = ""; /// /// 钢种代码 /// private string gradecode = ""; /// /// 钢种名称 /// private string gradename = ""; /// /// 材料理论重量(实际) /// private decimal? actTheoryWeight = null; /// /// 所属权单位代码 /// private string belongCode = ""; /// /// 所属权单位 /// private string belongName = ""; /// /// 电炉产线编码 /// private string efPlineCode = ""; /// /// 电炉产线描述 /// private string efPlineName = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 结算日期(年月) /// private string balYearMonth = ""; /// /// 虚拟炉号 /// [Description("回废单号")] [Nullable(false)] [DataLength(20)] public string BackWasteNo { get { return backWasteNo; } set { backWasteNo = value; } } /// /// 熔炼炉号 /// [Description("熔炼炉号")] [Nullable(true)] [DataLength(20)] public string StoveNo { get { return stoveNo; } set { stoveNo = value; } } /// /// 浇次号 /// [Description("浇次号")] [Nullable(true)] [DataLength(20)] public string CastNo { get { return castNo; } set { castNo = value; } } /// /// 物料码 /// [Description("物料码")] [Nullable(true)] [DataLength(40)] 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(6)] public decimal? ActTheoryWeight { get { return actTheoryWeight; } set { actTheoryWeight = value; } } /// /// 所属权单位代码 /// [Description("所属权单位代码")] [Nullable(true)] [DataLength(40)] public string BelongCode { get { return belongCode; } set { belongCode = value; } } /// /// 所属权单位 /// [Description("所属权单位")] [Nullable(true)] [DataLength(50)] public string BelongName { get { return belongName; } set { belongName = 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 CreateName { get { return createName; } set { createName = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 结算日期(年月) /// [Description("结转年月")] [Nullable(true)] [DataLength(6)] public string BalYearMonth { get { return balYearMonth; } set { balYearMonth = value; } } } }