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_JG_BL所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:Chenxi-PC2 时间:2015-09-21
///
public class SlmOrdDesignMscJgBlEntity
{
///
/// DESGIN_KEY
///
private string desginKey = "";
///
/// 接箍码(COM_MSC_R_JG)
///
private string codeJg = "";
///
/// 备料码
///
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; }
}
///
/// 接箍码(COM_MSC_R_JG)
///
[Description("接箍码(COM_MSC_R_JG)")]
[Nullable(false)]
[DataLength(7)]
public string CodeJg
{
get { return codeJg; }
set { codeJg = 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; }
}
}
}