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.SaleOrder { /// /// 数据库表SLM_ORD_DESIGN_MSC_BL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:Chenxi-PC2 时间:2015-09-21 /// public class CraftOrdDesignMscBlEntity { /// /// DESGIN_KEY /// private string desginKey = ""; /// /// 组号 /// private decimal? groupNum = null; /// /// 备料码 /// private string pscBl = ""; /// /// 备料码DESGIN_KEY /// private string desginKeyBl = ""; /// /// DESGIN_KEY /// [Description("DESGIN_KEY")] [Nullable(false)] [DataLength(40)] public string DesginKey { get { return desginKey; } set { desginKey = value; } } /// /// 组号 /// [Description("组号")] [Nullable(false)] [DataLength(3)] public decimal? GroupNum { get { return groupNum; } set { groupNum = value; } } /// /// 备料码 /// [Description("备料码")] [Nullable(false)] [DataLength(7)] public string PscBl { get { return pscBl; } set { pscBl = value; } } /// /// 备料码DESGIN_KEY /// [Description("备料码DESGIN_KEY")] [Nullable(true)] [DataLength(40)] public string DesginKeyBl { get { return desginKeyBl; } set { desginKeyBl = value; } } } }