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_D所对应的实体类(生成工具:代码生成工具3.0) /// 作者:doubi-PC 时间:2016-11-22 /// public class CostCalculationDEntity { /// /// 排产年月 /// private string yearMonth = ""; /// /// 轧管订单编号 /// private string proPlanId = ""; /// /// 投入物料编码 /// private string dInMaterialNo = ""; /// /// 产出物料编码 /// private string dOutMaterialNo = ""; /// /// 产线 /// private string dPline = ""; /// /// 小时能力(t/h) /// private decimal? dHrCapcty = null; /// /// 成材率(%) /// private decimal? dPrdRate = null; /// /// 排产量(产出量) /// private decimal? weigthSD = null; /// /// 轧管总投入量 /// private decimal? inWeigthS = null; /// /// 制造总成本(元) /// private decimal? dZzcbCost = null; /// /// 返回金额 /// private decimal? dFhCost = null; /// /// 折标后加工费(元) /// private decimal? dZbjgfCost = null; /// /// 完全成本(元) /// private decimal? dZcbCost = null; /// /// 主交货编码PK /// private string ordLnDlyPk = ""; /// /// 外购坯(COM_BASE_INFO:1218) /// private string outsBilletFl = ""; /// /// 外购管(COM_BASE_INFO:1219) /// private string outsStlPipeFl = ""; /// /// 投入物料描述 /// private string dInMaterialDesc = ""; /// /// 产出物料描述 /// private string dOutMaterialDesc = ""; /// /// 品名描述 /// private string producname = ""; /// /// 钢级(牌号)名称 /// private string steelname = ""; /// /// 标准类别描述 /// private string stdStyleDesc = ""; /// /// 产品规格描述 /// private string specName = ""; /// /// 扣型描述 /// private string modelDesc = ""; /// /// 合同号/行号 /// private string orderNo = ""; /// /// 客户名称 /// private string customerNm = ""; /// /// 销售组织描述 /// private string saleOrgDesc = ""; /// /// 排产年月 /// [Description("排产年月")] [Nullable(false)] [DataLength(6)] public string YearMonth { get { return yearMonth; } set { yearMonth = value; } } /// /// 轧管订单编号 /// [Description("轧管订单编号")] [Nullable(false)] [DataLength(20)] public string ProPlanId { get { return proPlanId; } set { proPlanId = value; } } /// /// 投入物料编码 /// [Description("投入物料编码 ")] [Nullable(true)] [DataLength(30)] public string DInMaterialNo { get { return dInMaterialNo; } set { dInMaterialNo = value; } } /// /// 产出物料编码 /// [Description("产出物料编码")] [Nullable(true)] [DataLength(30)] public string DOutMaterialNo { get { return dOutMaterialNo; } set { dOutMaterialNo = value; } } /// /// 产线 /// [Description("产线")] [Nullable(true)] [DataLength(20)] public string DPline { get { return dPline; } set { dPline = value; } } /// /// 小时能力(t/h) /// [Description("小时能力(支/小时)")] [Nullable(true)] [DataLength(8)] public decimal? DHrCapcty { get { return dHrCapcty; } set { dHrCapcty = value; } } /// /// 成材率(%) /// [Description("成材率(%)")] [Nullable(true)] [DataLength(8)] public decimal? DPrdRate { get { return dPrdRate; } set { dPrdRate = value; } } /// /// 排产量(产出量) /// [Description("排产量(t)")] [Nullable(true)] [DataLength(15)] public decimal? WeigthSD { get { return weigthSD; } set { weigthSD = value; } } /// /// 轧管总投入量 /// [Description("轧管总投入量(t)")] [Nullable(true)] [DataLength(15)] public decimal? InWeigthS { get { return inWeigthS; } set { inWeigthS = value; } } /// /// 制造总成本(元) /// [Description("制造总成本(元)")] [Nullable(true)] [DataLength(15)] public decimal? DZzcbCost { get { return dZzcbCost; } set { dZzcbCost = value; } } /// /// 返回金额 /// [Description("返回金额(元)")] [Nullable(true)] [DataLength(15)] public decimal? DFhCost { get { return dFhCost; } set { dFhCost = value; } } /// /// 折标后加工费(元) /// [Description("折标后加工费(元)")] [Nullable(true)] [DataLength(15)] public decimal? DZbjgfCost { get { return dZbjgfCost; } set { dZbjgfCost = value; } } /// /// 完全成本(元) /// [Description("完全成本(元)")] [Nullable(true)] [DataLength(15)] public decimal? DZcbCost { get { return dZcbCost; } set { dZcbCost = value; } } /// /// 主交货编码PK /// [Description("主交货编码PK")] [Nullable(true)] [DataLength(40)] public string OrdLnDlyPk { get { return ordLnDlyPk; } set { ordLnDlyPk = value; } } /// /// 外购坯(COM_BASE_INFO:1218) /// [Description("外购坯")] [Nullable(true)] [DataLength(20)] public string OutsBilletFl { get { return outsBilletFl; } set { outsBilletFl = value; } } /// /// 外购管(COM_BASE_INFO:1219) /// [Description("外购管")] [Nullable(true)] [DataLength(20)] public string OutsStlPipeFl { get { return outsStlPipeFl; } set { outsStlPipeFl = value; } } /// /// 投入物料描述 /// [Description("投入物料")] [Nullable(true)] [DataLength(100)] public string DInMaterialDesc { get { return dInMaterialDesc; } set { dInMaterialDesc = value; } } /// /// 产出物料描述 /// [Description("产出物料")] [Nullable(true)] [DataLength(100)] public string DOutMaterialDesc { get { return dOutMaterialDesc; } set { dOutMaterialDesc = value; } }/// /// 品名描述 /// [Description("品名")] [Nullable(true)] [DataLength(100)] public string Producname { get { return producname; } set { producname = value; } } /// /// 钢级(牌号)名称 /// [Description("钢级(牌号)")] [Nullable(true)] [DataLength(100)] public string Steelname { get { return steelname; } set { steelname = value; } } /// /// 标准类别描述 /// [Description("标准类别")] [Nullable(true)] [DataLength(50)] public string StdStyleDesc { get { return stdStyleDesc; } set { stdStyleDesc = value; } } /// /// 产品规格描述 /// [Description("产品规格")] [Nullable(true)] [DataLength(100)] public string SpecName { get { return specName; } set { specName = value; } } /// /// 扣型描述 /// [Description("扣型")] [Nullable(true)] [DataLength(100)] public string ModelDesc { get { return modelDesc; } set { modelDesc = value; } } /// /// 合同号/行号 /// [Description("合同号/行号")] [Nullable(true)] [DataLength(25)] public string OrderNo { get { return orderNo; } set { orderNo = value; } } /// /// 客户名称 /// [Description("客户名称")] [Nullable(true)] [DataLength(60)] public string CustomerNm { get { return customerNm; } set { customerNm = value; } } /// /// 销售组织描述 /// [Description("销售组织")] [Nullable(true)] [DataLength(20)] public string SaleOrgDesc { get { return saleOrgDesc; } set { saleOrgDesc = value; } } } }