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_BL所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:Chenxi-PC2 时间:2015-09-21
///
public class CraftOrdDesignBlEntity
{
///
/// 备料码
///
private string pscBl = "";
///
/// 品名代码
///
private string produccode = "";
///
/// 品名描述
///
private string producname = "";
///
/// 标准代码
///
private string stdCode = "";
///
/// 标准名称
///
private string stdName = "";
///
/// 钢级(牌号)代码
///
private string steelcode = "";
///
/// 钢级(牌号)名称
///
private string steelname = "";
///
/// 标准类别代码
///
private string stdStyle = "";
///
/// 标准类别描述
///
private string stdStyleDesc = "";
///
/// 扣型代码
///
private string modelCode = "";
///
/// 扣型描述
///
private string modelDesc = "";
///
/// 外径(mm)
///
private decimal? minD = null;
///
/// 壁厚(mm)
///
private decimal? minH = null;
///
/// 协议或Alpha代码
///
private string useCode = "";
///
/// 协议或Alpha描述
///
private string useDesc = "";
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 有效标志(1:有效,0:无效)
///
private string validflag = "";
///
/// 备注
///
private string memo = "";
///
/// 长度下限
///
private decimal? minL = null;
///
/// 长度上限
///
private decimal? maxL = null;
///
/// 说明图片(路径)
///
private string fileJpg = "";
///
/// DESGIN_KEY
///
private string desginKey = "";
///
/// 技术评审状态('0':待技术评审;'1':技术评审中;'2':技术评审通过;'3':技术评审失败)
///
private string reviewStatus = "";
private string validflagDesc = "";
///
/// 备料码
///
[Description("备料码")]
[Nullable(false)]
[DataLength(7)]
public string PscBl
{
get { return pscBl; }
set { pscBl = 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(20)]
public string StdCode
{
get { return stdCode; }
set { stdCode = value; }
}
///
/// 标准名称
///
[Description("标准名称")]
[Nullable(true)]
[DataLength(200)]
public string StdName
{
get { return stdName; }
set { stdName = 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(3)]
public string StdStyle
{
get { return stdStyle; }
set { stdStyle = value; }
}
///
/// 标准类别描述
///
[Description("标准类别")]
[Nullable(true)]
[DataLength(50)]
public string StdStyleDesc
{
get { return stdStyleDesc; }
set { stdStyleDesc = value; }
}
///
/// 扣型代码
///
[Description("扣型")]
[Nullable(true)]
[DataLength(20)]
public string ModelCode
{
get { return modelCode; }
set { modelCode = value; }
}
///
/// 扣型描述
///
[Description("扣型")]
[Nullable(true)]
[DataLength(100)]
public string ModelDesc
{
get { return modelDesc; }
set { modelDesc = value; }
}
///
/// 外径(mm)
///
[Description("外径(mm)")]
[Nullable(true)]
[DataLength(6)]
public decimal? MinD
{
get { return minD; }
set { minD = value; }
}
///
/// 壁厚(mm)
///
[Description("壁厚(mm)")]
[Nullable(true)]
[DataLength(6)]
public decimal? MinH
{
get { return minH; }
set { minH = value; }
}
///
/// 协议或Alpha代码
///
[Description("协议或Alpha代码")]
[Nullable(false)]
[DataLength(20)]
public string UseCode
{
get { return useCode; }
set { useCode = value; }
}
///
/// 协议或Alpha描述
///
[Description("用途描述")]
[Nullable(true)]
[DataLength(100)]
public string UseDesc
{
get { return useDesc; }
set { useDesc = 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; }
}
///
/// 有效标志(1:有效,0:无效)
///
[Description("有效标志")]
[Nullable(false)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 备注
///
[Description("备注")]
[Nullable(true)]
[DataLength(500)]
public string Memo
{
get { return memo; }
set { memo = value; }
}
///
/// 长度下限
///
[Description("长度下限")]
[Nullable(true)]
[DataLength(6)]
public decimal? MinL
{
get { return minL; }
set { minL = value; }
}
///
/// 长度上限
///
[Description("长度上限")]
[Nullable(true)]
[DataLength(6)]
public decimal? MaxL
{
get { return maxL; }
set { maxL = value; }
}
///
/// 说明图片(路径)
///
[Description("说明图片(路径)")]
[Nullable(true)]
[DataLength(100)]
public string FileJpg
{
get { return fileJpg; }
set { fileJpg = value; }
}
///
/// DESGIN_KEY
///
[Description("DESGIN_KEY")]
[Nullable(true)]
[DataLength(40)]
public string DesginKey
{
get { return desginKey; }
set { desginKey = value; }
}
///
/// 技术评审状态('0':待技术评审;'1':技术评审中;'2':技术评审通过;'3':技术评审失败)
///
[Description("技术评审状态")]
[Nullable(true)]
[DataLength(1)]
public string ReviewStatus
{
get { return reviewStatus; }
set { reviewStatus = value; }
}
///
/// 有效标志
///
[Description("有效标志")]
[Nullable(true)]
public string ValidflagDesc
{
get { return validflagDesc; }
set { validflagDesc = value; }
}
}
}