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.物料Bom.entity { /// /// 数据库表SLM_ORD_DESIGN_BOM_J所对应的实体类(生成工具:代码生成工具3.0) /// 作者:USER-20150714WV 时间:2016-06-22 /// public class SlmOrdDesignBomJEntity { /// /// BOM /// private string bom = ""; /// /// 接箍BOM /// private string bomJg = ""; /// /// 物料编码 /// private string outMaterialNo = ""; /// /// 物料描述 /// private string outMaterialDesc = ""; /// /// BOM /// [Description("BOM")] [Nullable(false)] [DataLength(40)] public string Bom { get { return bom; } set { bom = value; } } /// /// 接箍BOM /// [Description("接箍BOM")] [Nullable(false)] [DataLength(40)] public string BomJg { get { return bomJg; } set { bomJg = value; } } /// /// 物料编码 /// [Description("物料编码")] [Nullable(false)] [DataLength(30)] public string OutMaterialNo { get { return outMaterialNo; } set { outMaterialNo = value; } } /// /// 物料描述 /// [Description("物料描述")] [Nullable(true)] [DataLength(100)] public string OutMaterialDesc { get { return outMaterialDesc; } set { outMaterialDesc = value; } } } }