using Core.Mes.Client.Comm.Attribute;
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Linq;
using System.Text;
namespace Core.StlMes.Client.PlnSaleOrd.OrderManage.entity
{
///
/// 数据库表CRAFT_ORD_DESIGN_MSC_PL_GX_PRL所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DESKTOP-LI8OG3P 时间:2016-12-26
///
public class CraftOrdDesignMscPlGxPrlEntity
{
///
/// DESGIN_KEY
///
private string desginKey = "";
///
/// 全程产线号
///
private string mscPline = "";
///
/// 全程工序顺序号
///
private decimal? backlogSeq = null;
///
/// 工序代码
///
private string processCode = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 产能井代码
///
private string wellCode = "";
///
/// 产能井描述
///
private string wellName = "";
///
/// 是否警告
///
private string warnFl = "";
///
/// 警告内容
///
private string warnDesc = "";
///
/// 是否选取该产线(1:是、0、否)
///
private string validflag = "";
///
/// 认证产线
///
private string identFlag = "";
///
/// DESGIN_KEY
///
[Description("DESGIN_KEY")]
[Nullable(false)]
[DataLength(40)]
public string DesginKey
{
get { return desginKey; }
set { desginKey = value; }
}
///
/// 全程产线号
///
[Description("全程产线号")]
[Nullable(false)]
[DataLength(6)]
public string MscPline
{
get { return mscPline; }
set { mscPline = value; }
}
///
/// 全程工序顺序号
///
[Description("全程工序顺序号")]
[Nullable(false)]
[DataLength(22)]
public decimal? BacklogSeq
{
get { return backlogSeq; }
set { backlogSeq = value; }
}
///
/// 工序代码
///
[Description("工序代码")]
[Nullable(false)]
[DataLength(20)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 产线代码
///
[Description("产线代码")]
[Nullable(false)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 产线描述
///
[Description("产线描述")]
[Nullable(false)]
[DataLength(100)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 产能井代码
///
[Description("产能井代码")]
[Nullable(true)]
[DataLength(20)]
public string WellCode
{
get { return wellCode; }
set { wellCode = value; }
}
///
/// 产能井描述
///
[Description("产能井描述")]
[Nullable(true)]
[DataLength(100)]
public string WellName
{
get { return wellName; }
set { wellName = value; }
}
///
/// 是否警告
///
[Description("是否警告")]
[Nullable(true)]
[DataLength(1)]
public string WarnFl
{
get { return warnFl; }
set { warnFl = value; }
}
///
/// 警告内容
///
[Description("警告内容")]
[Nullable(true)]
[DataLength(200)]
public string WarnDesc
{
get { return warnDesc; }
set { warnDesc = value; }
}
///
/// 是否选取该产线(1:是、0、否)
///
[Description("是否选取该产线(1:是、0、否)")]
[Nullable(true)]
[DataLength(1)]
public string Validflag
{
get { return validflag; }
set { validflag = value; }
}
///
/// 认证产线
///
[Description("认证产线")]
[Nullable(true)]
[DataLength(1)]
public string IdentFlag
{
get { return identFlag; }
set { identFlag = value; }
}
}
}