using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
using Core.Mes.Client.Comm.Attribute;
namespace com.steering.pss.plnsaleord.order.model
{
///
/// 数据库表SLM_BASE_MATERIAL_D_PL所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:xiaohai-PC 时间:2015-11-06
///
public class SlmBaseMaterialDPlEntity
{
///
/// 投入物料编码
///
private string inMaterialNo = "";
///
/// 产出物料编码
///
private string outMaterialNo = "";
///
/// 产线代码
///
private string plineCode = "";
///
/// 产线描述
///
private string plineName = "";
///
/// 小时能力(t/h)
///
private decimal? hrCapcty = null;
///
/// 成材率(%)
///
private decimal? prdRate = null;
///
/// 最大倍尺数
///
private decimal? dblLenMax = null;
///
/// 轧制长度(Min)(M)
///
private decimal? rolLenMin = null;
///
/// 轧制长度(Max)(M)
///
private decimal? rolLenMax = null;
///
/// 切尾(MM)
///
private decimal? cropEnd = null;
///
/// 芯棒尺寸(MM)
///
private decimal? mandrelSize = null;
///
/// 禁用标识(依据监制点的信息可以获取)
///
private string disableFl = "";
///
/// 切头(MM)
///
private decimal? cropHead = null;
///
/// 每万支废品数
///
private decimal? wasteRate = null;
///
/// 创建人
///
private string createName = "";
///
/// 创建时间
///
private string createTime = "";
///
/// 修改人
///
private string updateName = "";
///
/// 修改时间
///
private string updateTime = "";
///
/// 删除人
///
private string deleteName = "";
///
/// 删除时间
///
private string deleteTime = "";
///
/// 优先级
///
private decimal? plineLevel = null;
///
/// 投入物料编码
///
[Description("投入物料编码")]
[Nullable(false)]
[DataLength(30)]
public string InMaterialNo
{
get { return inMaterialNo; }
set { inMaterialNo = value; }
}
///
/// 产出物料编码
///
[Description("产出物料编码")]
[Nullable(false)]
[DataLength(30)]
public string OutMaterialNo
{
get { return outMaterialNo; }
set { outMaterialNo = 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; }
}
///
/// 小时能力(t/h)
///
[Description("小时能力(t/h)")]
[Nullable(true)]
[DataLength(8)]
public decimal? HrCapcty
{
get { return hrCapcty; }
set { hrCapcty = value; }
}
///
/// 成材率(%)
///
[Description("成材率(%)")]
[Nullable(true)]
[DataLength(4)]
public decimal? PrdRate
{
get { return prdRate; }
set { prdRate = value; }
}
///
/// 最大倍尺数
///
[Description("最大倍尺数")]
[Nullable(true)]
[DataLength(1)]
public decimal? DblLenMax
{
get { return dblLenMax; }
set { dblLenMax = value; }
}
///
/// 轧制长度(Min)(M)
///
[Description("轧制长度(Min)(M)")]
[Nullable(true)]
[DataLength(6)]
public decimal? RolLenMin
{
get { return rolLenMin; }
set { rolLenMin = value; }
}
///
/// 轧制长度(Max)(M)
///
[Description("轧制长度(Max)(M)")]
[Nullable(true)]
[DataLength(6)]
public decimal? RolLenMax
{
get { return rolLenMax; }
set { rolLenMax = value; }
}
///
/// 切尾(MM)
///
[Description("切尾(MM)")]
[Nullable(true)]
[DataLength(6)]
public decimal? CropEnd
{
get { return cropEnd; }
set { cropEnd = value; }
}
///
/// 芯棒尺寸(MM)
///
[Description("芯棒尺寸(MM)")]
[Nullable(true)]
[DataLength(6)]
public decimal? MandrelSize
{
get { return mandrelSize; }
set { mandrelSize = value; }
}
///
/// 禁用标识(依据监制点的信息可以获取)
///
[Description("禁用标识")]
[Nullable(true)]
[DataLength(1)]
public string DisableFl
{
get { return disableFl; }
set { disableFl = value; }
}
///
/// 切头(MM)
///
[Description("切头(MM)")]
[Nullable(true)]
[DataLength(6)]
public decimal? CropHead
{
get { return cropHead; }
set { cropHead = value; }
}
///
/// 每万支废品数
///
[Description("每万支废品数")]
[Nullable(true)]
[DataLength(22)]
public decimal? WasteRate
{
get { return wasteRate; }
set { wasteRate = 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; }
}
///
/// 优先级
///
[Description("优先级")]
[Nullable(true)]
[DataLength(22)]
public decimal? PlineLevel
{
get { return plineLevel; }
set { plineLevel = value; }
}
}
}