using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.SaleOrder { /// /// 数据库表SLM_BASE_MATERIAL_F_PL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-11 /// public class SlmBaseMaterialFPlEntity { private string plineLevel; [Description("优先级")] public string PlineLevel { get { return plineLevel; } set { plineLevel = value; } } /// /// 投入物料编码 /// private string inMaterialNo = ""; /// /// 产出物料编码 /// private string outMaterialNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 小时能力(t/h) /// private decimal? hrCapcty = null; /// /// 成材率(%) /// private decimal? prdRate = null; /// /// 禁用标识(依据监制点的信息可以获取) /// private bool disableFl = false; /// /// 每万支废品数 /// private decimal? wasteRate = null; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; private string inMaterialDesc = ""; private string outMaterialDesc = ""; private string processingCost = ""; /// /// 加工成本 /// [Description("加工费")] [Nullable(false)] [DataLength(30)] public string ProcessingCost { get { return processingCost; } set { processingCost = value; } } private string totalCost = ""; /// /// 完全成本 /// [Description("工序成本")] [Nullable(false)] [DataLength(30)] public string TotalCost { get { return totalCost; } set { totalCost = value; } } /// /// 投入物料编码 /// [Description("投入物料编码")] [Nullable(false)] [DataLength(30)] public string InMaterialNo { get { return inMaterialNo; } set { inMaterialNo = value; } } /// /// 产出物料编码 /// [Description("产出物料编码")] [Nullable(false)] [DataLength(30)] public string OutMaterialNo { get { return outMaterialNo; } set { outMaterialNo = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(false)] [DataLength(20)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } /// /// 产线描述 /// [Description("产线描述")] [Nullable(false)] [DataLength(100)] public string PlineName { get { return plineName; } set { plineName = value; } } /// /// 小时能力(t/h) /// [Description("小时能力(支/小时)")] [Nullable(true)] [DataLength(8)] public decimal? HrCapcty { get { return hrCapcty; } set { hrCapcty = value; } } /// /// 成材率(%) /// [Description("成材率(%)")] [Nullable(true)] [DataLength(4)] public decimal? PrdRate { get { return prdRate; } set { prdRate = value; } } /// /// 禁用标识(依据监制点的信息可以获取) /// [Description("禁用标识")] [Nullable(true)] [DataLength(1)] public bool DisableFl { get { return disableFl; } set { disableFl = value; } } /// /// 每万支废品数 /// [Description("每万支废品数")] [Nullable(true)] [DataLength(22)] public decimal? WasteRate { get { return wasteRate; } set { wasteRate = 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(20)] public string UpdateName { get { return updateName; } set { updateName = value; } } /// /// 修改时间 /// [Description("修改时间")] [Nullable(true)] public string UpdateTime { get { return updateTime; } set { updateTime = value; } } /// /// 删除人 /// [Description("删除人")] [Nullable(true)] [DataLength(20)] public string DeleteName { get { return deleteName; } set { deleteName = value; } } /// /// 删除时间 /// [Description("删除时间")] [Nullable(true)] public string DeleteTime { get { return deleteTime; } set { deleteTime = value; } } /// /// 投入物料 /// [Description("投入物料")] public string InMaterialDesc { get { return inMaterialDesc; } set { inMaterialDesc = value; } } /// /// 产出物料 /// [Description("产出物料")] public string OutMaterialDesc { get { return outMaterialDesc; } set { outMaterialDesc = value; } } } }