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.PnCost.Models { /// /// 数据库表COST_CALCULATION_GTL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:doubi-PC 时间:2016-11-18 /// public class CostCalculationGtlEntity { /// /// 年月 /// private string yearMonth = ""; /// /// 铁水(t) /// private decimal? wlTs = null; /// /// 生铁(t) /// private decimal? wlSt = null; /// /// 废钢(t) /// private decimal? wlFg = null; /// /// 铁水采购单价(元) /// private decimal? wlTsCost = null; /// /// 生铁采购单价(元) /// private decimal? wlStCost = null; /// /// 废钢采购单价(元) /// private decimal? wlFgCost = null; /// /// 当前年月钢铁料总成本(元) /// private decimal? sumCost = null; /// /// 无注释 /// private string createTime = ""; /// /// 备注说明 /// private string memo = ""; /// /// 电炉总投料量 /// private decimal? weigthST = null; /// /// 电炉排产量(产出量) /// private decimal? weigthSA = null; /// /// 铸造排产量(产出量) /// private decimal? weigthSB = null; /// /// 锻造排产量(产出量) /// private decimal? weigthSC = null; /// /// 轧管排产量(产出量) /// private decimal? weigthSD = null; /// /// 镦拨扩排产量(产出量) /// private decimal? weigthSE = null; /// /// 热处理排产量(产出量) /// private decimal? weigthSF = null; /// /// 加工排产量(产出量) /// private decimal? weigthSG = null; /// /// 接箍排产量(产出量) /// private decimal? weigthSH = null; /// /// 管坯外购量 /// private decimal? wlWg = null; /// /// 年月 /// [Description("年月")] [Nullable(false)] [DataLength(6)] public string YearMonth { get { return yearMonth; } set { yearMonth = value; } } /// /// 铁水(t) /// [Description("铁水(t)")] [Nullable(true)] [DataLength(15)] public decimal? WlTs { get { return wlTs; } set { wlTs = value; } } /// /// 生铁(t) /// [Description("生铁(t)")] [Nullable(true)] [DataLength(15)] public decimal? WlSt { get { return wlSt; } set { wlSt = value; } } /// /// 废钢(t) /// [Description("废钢(t)")] [Nullable(true)] [DataLength(15)] public decimal? WlFg { get { return wlFg; } set { wlFg = value; } } /// /// 铁水采购单价(元) /// [Description("铁水采购单价(元)")] [Nullable(true)] [DataLength(15)] public decimal? WlTsCost { get { return wlTsCost; } set { wlTsCost = value; } } /// /// 生铁采购单价(元) /// [Description("生铁采购单价(元)")] [Nullable(true)] [DataLength(15)] public decimal? WlStCost { get { return wlStCost; } set { wlStCost = value; } } /// /// 废钢采购单价(元) /// [Description("废钢采购单价(元)")] [Nullable(true)] [DataLength(15)] public decimal? WlFgCost { get { return wlFgCost; } set { wlFgCost = value; } } /// /// 当前年月钢铁料总成本(元) /// [Description("当前年月钢铁料总成本(元)")] [Nullable(true)] [DataLength(15)] public decimal? SumCost { get { return sumCost; } set { sumCost = value; } } /// /// 无注释 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } /// /// 备注说明 /// [Description("备注说明")] [Nullable(true)] [DataLength(500)] public string Memo { get { return memo; } set { memo = value; } } /// /// 电炉总投料量 /// [Description("电炉总投料量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthST { get { return weigthST; } set { weigthST = value; } } /// /// 电炉排产量(产出量) /// [Description("电炉排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSA { get { return weigthSA; } set { weigthSA = value; } } /// /// 铸造排产量(产出量) /// [Description("铸造排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSB { get { return weigthSB; } set { weigthSB = value; } } /// /// 锻造排产量(产出量) /// [Description("锻造排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSC { get { return weigthSC; } set { weigthSC = value; } } /// /// 轧管排产量(产出量) /// [Description("轧管排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSD { get { return weigthSD; } set { weigthSD = value; } } /// /// 镦拨扩排产量(产出量) /// [Description("镦拨扩排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSE { get { return weigthSE; } set { weigthSE = value; } } /// /// 热处理排产量(产出量) /// [Description("热处理排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSF { get { return weigthSF; } set { weigthSF = value; } } /// /// 加工排产量(产出量) /// [Description("加工排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSG { get { return weigthSG; } set { weigthSG = value; } } /// /// 接箍排产量(产出量) /// [Description("接箍排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSH { get { return weigthSH; } set { weigthSH = value; } } /// /// 管坯外购量 /// [Description("管坯外购量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WlWg { get { return wlWg; } set { wlWg = value; } } } }