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所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:Chenxi-PC2 时间:2015-09-21
///
public class CraftOrdDesignMscJgEntity
{
///
/// DESGIN_KEY
///
private string desginKey = "";
///
/// 接箍码(COM_MSC_R_JG)
///
private string codeJg = "";
///
/// 探伤要求(针对接箍码)
///
private string demandDetection = "";
///
/// 磷化要求(针对接箍码)(0:否,1:是)
///
private string demandBonderizing = "";
///
/// 镀铜要求(针对接箍码)(0:否,1:是)
///
private string demandCopper = "";
///
/// 喷砂要求(针对接箍码)(0:否,1:是)
///
private string demandBlast = "";
///
/// 接箍码适用成品品名
///
private string produccode = "";
///
/// 接箍码适成品品名描述
///
private string producname = "";
///
/// 接箍码适用成品钢级代码
///
private string steelcode = "";
///
/// 接箍码适用成品钢级名称
///
private string steelname = "";
///
/// 接箍码适用成品壁厚最小值
///
private string minH = "";
///
/// 接箍码适用成品壁厚最大值
///
private string maxH = "";
///
/// 接箍码适用成品外径最小值
///
private string minD = "";
///
/// 接箍码适用成品外径最大值
///
private string maxD = "";
///
/// DESGIN_KEY
///
[Description("DESGIN_KEY")]
[Nullable(false)]
[DataLength(40)]
public string DesginKey
{
get { return desginKey; }
set { desginKey = value; }
}
///
/// 接箍码(COM_MSC_R_JG)
///
[Description("接箍码")]
[Nullable(false)]
[DataLength(7)]
public string CodeJg
{
get { return codeJg; }
set { codeJg = value; }
}
///
/// 探伤要求(针对接箍码)
///
[Description("探伤要求")]
[Nullable(true)]
[DataLength(200)]
public string DemandDetection
{
get { return demandDetection; }
set { demandDetection = value; }
}
///
/// 磷化要求(针对接箍码)(0:否,1:是)
///
[Description("磷化要求")]
[Nullable(true)]
[DataLength(200)]
public string DemandBonderizing
{
get { return demandBonderizing; }
set { demandBonderizing = value; }
}
///
/// 镀铜要求(针对接箍码)(0:否,1:是)
///
[Description("镀铜要求")]
[Nullable(true)]
[DataLength(200)]
public string DemandCopper
{
get { return demandCopper; }
set { demandCopper = value; }
}
///
/// 喷砂要求(针对接箍码)(0:否,1:是)
///
[Description("喷砂要求")]
[Nullable(true)]
[DataLength(200)]
public string DemandBlast
{
get { return demandBlast; }
set { demandBlast = value; }
}
///
/// 接箍码适用成品品名
///
[Description("品名")]
[Nullable(true)]
[DataLength(20)]
public string Produccode
{
get { return produccode; }
set { produccode = value; }
}
///
/// 接箍码适成品品名描述
///
[Description("品名")]
[Nullable(true)]
[DataLength(100)]
public string Producname
{
get { return producname; }
set { producname = value; }
}
///
/// 接箍码适用成品钢级代码
///
[Description("钢级代码")]
[Nullable(true)]
[DataLength(10)]
public string Steelcode
{
get { return steelcode; }
set { steelcode = value; }
}
///
/// 接箍码适用成品钢级名称
///
[Description("钢级")]
[Nullable(true)]
[DataLength(100)]
public string Steelname
{
get { return steelname; }
set { steelname = value; }
}
///
/// 接箍码适用成品壁厚最小值
///
[Description("壁厚最小值")]
[Nullable(true)]
[DataLength(10)]
public string MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 接箍码适用成品壁厚最大值
///
[Description("壁厚最大值")]
[Nullable(true)]
[DataLength(10)]
public string MaxH
{
get { return maxH; }
set { maxH = value; }
}
///
/// 接箍码适用成品外径最小值
///
[Description("外径最小值")]
[Nullable(true)]
[DataLength(10)]
public string MinD
{
get { return minD; }
set { minD = value; }
}
///
/// 接箍码适用成品外径最大值
///
[Description("外径最大值")]
[Nullable(true)]
[DataLength(10)]
public string MaxD
{
get { return maxD; }
set { maxD = value; }
}
}
}