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_E_PL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:USER-20150714WV 时间:2016-03-15 /// public class SlmBaseMaterialEPlEntity { private string inMaterialDesc = ""; [Description("投入物料")] public string InMaterialDesc { get { return inMaterialDesc; } set { inMaterialDesc = value; } } private string outMaterialDesc = ""; [Description("产出物料")] public string OutMaterialDesc { get { return outMaterialDesc; } set { outMaterialDesc = value; } } /// /// 投入物料编码 /// private string inMaterialNo = ""; /// /// 产出物料编码 /// private string outMaterialNo = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 产线描述 /// private string plineName = ""; /// /// 小时能力(t/h) /// private string hrCapcty ; /// /// 成材率(%) /// private string prdRate; /// /// 禁用标识(依据监制点的信息可以获取) /// private string disableFl = ""; /// /// 切头(MM) /// private string cropHead; /// /// 切尾(MM) /// private string cropEnd ; /// /// 每万支废品数 /// private string wasteRate ; /// /// 审核标识(0:无效;1:未审核;2:已生效) /// private string auditFlag = ""; /// /// 创建人 /// private string createName = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 修改人 /// private string updateName = ""; /// /// 修改时间 /// private string updateTime = ""; /// /// 删除人 /// private string deleteName = ""; /// /// 删除时间 /// private string deleteTime = ""; /// /// 镦粗加长 /// private string upsettingLength ; /// /// 优先级 /// private string plineLevel ; /// /// 投入物料编码 /// [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("小时能力(支/h)")] [Nullable(true)] [DataLength(8)] public string HrCapcty { get { return hrCapcty; } set { hrCapcty = value; } } /// /// 成材率(%) /// [Description("成材率(%)")] [Nullable(true)] [DataLength(4)] public string PrdRate { get { return prdRate; } set { prdRate = value; } } /// /// 禁用标识(依据监制点的信息可以获取) /// [Description("禁用标识")] [Nullable(true)] [DataLength(1)] public string DisableFl { get { return disableFl; } set { disableFl = value; } } /// /// 切头(MM) /// [Description("切头(MM)")] [Nullable(true)] [DataLength(6)] public string CropHead { get { return cropHead; } set { cropHead = value; } } /// /// 切尾(MM) /// [Description("切尾(MM)")] [Nullable(true)] [DataLength(6)] public string CropEnd { get { return cropEnd; } set { cropEnd = value; } } /// /// 每万支废品数 /// [Description("每万支废品数")] [Nullable(true)] [DataLength(22)] public string WasteRate { get { return wasteRate; } set { wasteRate = value; } } /// /// 审核标识(0:无效;1:未审核;2:已生效) /// [Description("审核标识")] [Nullable(true)] [DataLength(1)] public string AuditFlag { get { return auditFlag; } set { auditFlag = 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(6)] public string UpsettingLength { get { return upsettingLength; } set { upsettingLength = value; } } /// /// 优先级 /// [Description("优先级")] [Nullable(true)] [DataLength(22)] public string PlineLevel { get { return plineLevel; } set { plineLevel = value; } } } }