using System; using System.Collections.Generic; using System.ComponentModel; using System.Linq; using System.Text; using Core.Mes.Client.Comm.Attribute; namespace Core.StlMes.Client.PlnSaleOrd.Entity { /// /// 铸造工序 /// /// /// 数据库表SLM_BASE_MATERIAL_B_PL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DESKTOP-LI8OG3P 时间:2016-08-12 /// public class SlmBaseMaterialBPlEntity { /// /// 投入物料编码 /// private string inMaterialNo = ""; /// /// 产出物料编码 /// private string outMaterialNo = ""; /// /// 投入物料编码 /// private string inMaterialDesc = ""; /// /// 产出物料编码 /// private string outMaterialDesc = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 小时能力(t/h) /// private decimal? hrCapcty = null; /// /// 成材率(%) /// private decimal? prdRate = null; /// /// 禁用标识(依据监制点的信息可以获取) /// private bool disableFl ; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 优先级 /// private decimal? plineLevel = null; /// /// 浇次允许最大炉数 /// private decimal? stoveCnt = null; /// /// 加工成本 /// private decimal? processingCost = null; /// /// 完全成本 /// private decimal? totalCost = null; /// /// 投入物料编码 /// [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(30)] public string InMaterialDesc { get { return inMaterialDesc; } set { inMaterialDesc = value; } } [Description("产出物料")] [Nullable(false)] [DataLength(30)] public string OutMaterialDesc { get { return outMaterialDesc; } set { outMaterialDesc = 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(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("优先级")] [Nullable(true)] [DataLength(22)] public decimal? PlineLevel { get { return plineLevel; } set { plineLevel = value; } } /// /// 浇次允许最大炉数 /// [Description("浇次允许最大炉数")] [Nullable(true)] [DataLength(22)] public decimal? StoveCnt { get { return stoveCnt; } set { stoveCnt = value; } } /// /// 加工成本 /// [Description("加工成本")] [Nullable(true)] [DataLength(9)] public decimal? ProcessingCost { get { return processingCost; } set { processingCost = value; } } /// /// 完全成本 /// [Description("完全成本")] [Nullable(true)] [DataLength(9)] public decimal? TotalCost { get { return totalCost; } set { totalCost = value; } } } }