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.PlnSaleOrd.炼钢计划.entity
{
public class PlnBasePlineLzEntity
{
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 工序代码
///
private string processCode = "";
///
/// 工序描述
///
private string processDesc = "";
///
/// 最大流数
///
private decimal? flowNumMax = 0;
///
/// 中包铸余
///
private decimal? zbLeftWt = 0;
///
/// 创建时间
///
private string creatTime = "";
///
/// 创建人
///
private string createName = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 最大连浇炉数
///
private decimal? furnaceNumMax = 0;
///
/// 优先电炉产线编码
///
private string plineCodeA = "";
///
/// 优先电炉产线描述
///
private string plineNameA = "";
///
/// 默认
///
private string defVal = "";
///
/// 产线代码
///
[Description("产线代码")]
[Nullable(false)]
[DataLength(20)]
public string PlineCode
{
get { return plineCode; }
set { plineCode = value; }
}
///
/// 产线描述
///
[Description("铸机产线")]
[Nullable(true)]
[DataLength(100)]
public string PlineName
{
get { return plineName; }
set { plineName = value; }
}
///
/// 工序代码
///
[Description("工序代码")]
[Nullable(true)]
[DataLength(20)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 工序描述
///
[Description("工序描述")]
[Nullable(true)]
[DataLength(100)]
public string ProcessDesc
{
get { return processDesc; }
set { processDesc = value; }
}
///
/// 最大流数
///
[Description("最大流数")]
[Nullable(true)]
[DataLength(2)]
public decimal? FlowNumMax
{
get { return flowNumMax; }
set { flowNumMax = value; }
}
///
/// 中包铸余
///
[Description("中包铸余")]
[Nullable(true)]
[DataLength(6)]
public decimal? ZbLeftWt
{
get { return zbLeftWt; }
set { zbLeftWt = value; }
}
///
/// 创建时间
///
[Description("创建时间")]
[Nullable(true)]
public string CreatTime
{
get { return creatTime; }
set { creatTime = value; }
}
///
/// 创建人
///
[Description("创建人")]
[Nullable(true)]
[DataLength(20)]
public string CreateName
{
get { return createName; }
set { createName = 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(5)]
public decimal? FurnaceNumMax
{
get { return furnaceNumMax; }
set { furnaceNumMax = value; }
}
///
/// 优先电炉产线编码
///
[Description("优先电炉产线编码")]
[Nullable(true)]
[DataLength(20)]
public string PlineCodeA
{
get { return plineCodeA; }
set { plineCodeA = value; }
}
///
/// 优先电炉产线描述
///
[Description("电炉产线(优先)")]
[Nullable(true)]
[DataLength(100)]
public string PlineNameA
{
get { return plineNameA; }
set { plineNameA = value; }
}
[Description("是否默认")]
public string DefVal
{
get { return defVal; }
set { defVal = value; }
}
}
}