using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.ComponentModel;
namespace Core.StlMes.Client.SaleOrder
{
public class SlmOrdDesignLengthEntity
{
///
/// 轧管规格描述
///
private object rollSpecDesc;
///
/// 合同行号
///
private object ordLnPk;
///
/// 冶金规范码
///
private object msc;
///
/// 全程产线号
///
private object mscPline;
///
/// 轧管适用产线代码
///
private object rollPlineCode;
///
/// 轧管适用产线
///
private object rollPlineDesc;
///
/// 适用断面
///
private object fitBiltSpecs;
///
/// 外径
///
private object dimater;
///
/// 壁厚
///
private object height;
///
/// 公差上限
///
private object heightMax;
///
/// 公差下限
///
private object heightMin;
///
/// 短尺随炉(1 代表 有短尺随炉 0 代表无短尺随炉)
///
private object shrtStove;
///
/// 单倍尺长
///
private object siglLen;
///
/// 短尺最短
///
private object shortTest;
///
/// 长度上限
///
private object lenMax;
///
/// 长度下限
///
private object lenMin;
///
/// 切头尾
///
private object cutHeadTail;
///
/// 烧损
///
private object burnOutRate;
///
/// 冷床
///
private object lengthColdBed;
///
/// 环形炉最长
///
private object lengthMaxRing;
///
/// 是否生产(1 代表 是 0 代表 否)
///
private object isOutput;
///
/// 最优断面
///
private object bestBiltSpec;
///
/// 损失率
///
private object lossPrcent;
///
/// 目标长度
///
private object aimLenght;
///
/// 最佳分切
///
private object cutNum;
///
/// 轧制长度
///
private object rollLenght;
///
/// 管极限长度
///
private object lenghtLimit;
///
/// 不能生产原因
///
private object reason;
///
/// 确认标识(1 代表通过 0 代表不通过)
///
private object commitFlag;
///
/// 轧管规格
///
private object rollSpecCode;
public SlmOrdDesignLengthEntity()
{
rollSpecDesc = "";
ordLnPk = "";
msc = "";
mscPline = "";
rollPlineCode = "";
rollPlineDesc = "";
fitBiltSpecs = "";
dimater = "";
height = "";
heightMax = "";
heightMin = "";
shrtStove = "";
siglLen = "";
shortTest = "";
lenMax = "";
lenMin = "";
cutHeadTail = "";
burnOutRate = "";
lengthColdBed = "";
lengthMaxRing = "";
isOutput = "";
bestBiltSpec = "";
lossPrcent = "";
aimLenght = "";
cutNum = "";
rollLenght = "";
lenghtLimit = "";
reason = "";
commitFlag = "";
rollSpecCode = "";
}
///
/// 轧管规格描述
///
[Description("轧管规格描述")]
public object RollSpecDesc
{
get { return rollSpecDesc; }
set
{
if (value == null)
{
rollSpecDesc = DBNull.Value;
}
else
{
rollSpecDesc = value;
}
}
}
///
/// 合同行号
///
[Description("合同行号")]
public object OrdLnPk
{
get { return ordLnPk; }
set
{
if (value == null)
{
ordLnPk = DBNull.Value;
}
else
{
ordLnPk = value;
}
}
}
///
/// 冶金规范码
///
[Description("冶金规范码")]
public object Msc
{
get { return msc; }
set
{
if (value == null)
{
msc = DBNull.Value;
}
else
{
msc = value;
}
}
}
///
/// 全程产线号
///
[Description("全程产线号")]
public object MscPline
{
get { return mscPline; }
set
{
if (value == null)
{
mscPline = DBNull.Value;
}
else
{
mscPline = value;
}
}
}
///
/// 轧管适用产线代码
///
[Description("轧管适用产线代码")]
public object RollPlineCode
{
get { return rollPlineCode; }
set
{
if (value == null)
{
rollPlineCode = DBNull.Value;
}
else
{
rollPlineCode = value;
}
}
}
///
/// 轧管适用产线
///
[Description("轧管适用产线")]
public object RollPlineDesc
{
get { return rollPlineDesc; }
set
{
if (value == null)
{
rollPlineDesc = DBNull.Value;
}
else
{
rollPlineDesc = value;
}
}
}
///
/// 适用断面
///
[Description("适用断面")]
public object FitBiltSpecs
{
get { return fitBiltSpecs; }
set
{
if (value == null)
{
fitBiltSpecs = DBNull.Value;
}
else
{
fitBiltSpecs = value;
}
}
}
///
/// 外径
///
[Description("外径")]
public object Dimater
{
get { return dimater; }
set
{
if (value == null)
{
dimater = DBNull.Value;
}
else
{
dimater = value;
}
}
}
///
/// 壁厚
///
[Description("壁厚")]
public object Height
{
get { return height; }
set
{
if (value == null)
{
height = DBNull.Value;
}
else
{
height = value;
}
}
}
///
/// 公差上限
///
[Description("公差上限")]
public object HeightMax
{
get { return heightMax; }
set
{
if (value == null)
{
heightMax = DBNull.Value;
}
else
{
heightMax = value;
}
}
}
///
/// 公差下限
///
[Description("公差下限")]
public object HeightMin
{
get { return heightMin; }
set
{
if (value == null)
{
heightMin = DBNull.Value;
}
else
{
heightMin = value;
}
}
}
///
/// 短尺随炉(1 代表 有短尺随炉 0 代表无短尺随炉)
///
[Description("短尺随炉")]
public object ShrtStove
{
get { return shrtStove; }
set
{
if (value == null)
{
shrtStove = DBNull.Value;
}
else
{
shrtStove = value;
}
}
}
///
/// 单倍尺长
///
[Description("单倍尺长")]
public object SiglLen
{
get { return siglLen; }
set
{
if (value == null)
{
siglLen = DBNull.Value;
}
else
{
siglLen = value;
}
}
}
///
/// 短尺最短
///
[Description("短尺最短")]
public object ShortTest
{
get { return shortTest; }
set
{
if (value == null)
{
shortTest = DBNull.Value;
}
else
{
shortTest = value;
}
}
}
///
/// 长度上限
///
[Description("长度上限")]
public object LenMax
{
get { return lenMax; }
set
{
if (value == null)
{
lenMax = DBNull.Value;
}
else
{
lenMax = value;
}
}
}
///
/// 长度下限
///
[Description("长度下限")]
public object LenMin
{
get { return lenMin; }
set
{
if (value == null)
{
lenMin = DBNull.Value;
}
else
{
lenMin = value;
}
}
}
///
/// 切头尾
///
[Description("切头尾")]
public object CutHeadTail
{
get { return cutHeadTail; }
set
{
if (value == null)
{
cutHeadTail = DBNull.Value;
}
else
{
cutHeadTail = value;
}
}
}
///
/// 烧损
///
[Description("烧损")]
public object BurnOutRate
{
get { return burnOutRate; }
set
{
if (value == null)
{
burnOutRate = DBNull.Value;
}
else
{
burnOutRate = value;
}
}
}
///
/// 冷床
///
[Description("冷床")]
public object LengthColdBed
{
get { return lengthColdBed; }
set
{
if (value == null)
{
lengthColdBed = DBNull.Value;
}
else
{
lengthColdBed = value;
}
}
}
///
/// 环形炉最长
///
[Description("环形炉最长")]
public object LengthMaxRing
{
get { return lengthMaxRing; }
set
{
if (value == null)
{
lengthMaxRing = DBNull.Value;
}
else
{
lengthMaxRing = value;
}
}
}
///
/// 是否生产(1 代表 是 0 代表 否)
///
[Description("是否生产")]
public object IsOutput
{
get { return isOutput; }
set
{
if (value == null)
{
isOutput = DBNull.Value;
}
else
{
isOutput = value;
}
}
}
///
/// 最优断面
///
[Description("最优断面")]
public object BestBiltSpec
{
get { return bestBiltSpec; }
set
{
if (value == null)
{
bestBiltSpec = DBNull.Value;
}
else
{
bestBiltSpec = value;
}
}
}
///
/// 损失率
///
[Description("损失率")]
public object LossPrcent
{
get { return lossPrcent; }
set
{
if (value == null)
{
lossPrcent = DBNull.Value;
}
else
{
lossPrcent = value;
}
}
}
///
/// 目标长度
///
[Description("目标长度")]
public object AimLenght
{
get { return aimLenght; }
set
{
if (value == null)
{
aimLenght = DBNull.Value;
}
else
{
aimLenght = value;
}
}
}
///
/// 最佳分切
///
[Description("最佳分切")]
public object CutNum
{
get { return cutNum; }
set
{
if (value == null)
{
cutNum = DBNull.Value;
}
else
{
cutNum = value;
}
}
}
///
/// 轧制长度
///
[Description("轧制长度")]
public object RollLenght
{
get { return rollLenght; }
set
{
if (value == null)
{
rollLenght = DBNull.Value;
}
else
{
rollLenght = value;
}
}
}
///
/// 管极限长度
///
[Description("管极限长度")]
public object LenghtLimit
{
get { return lenghtLimit; }
set
{
if (value == null)
{
lenghtLimit = DBNull.Value;
}
else
{
lenghtLimit = value;
}
}
}
///
/// 不能生产原因
///
[Description("不能生产原因")]
public object Reason
{
get { return reason; }
set
{
if (value == null)
{
reason = DBNull.Value;
}
else
{
reason = value;
}
}
}
///
/// 确认标识(1 代表通过 0 代表不通过)
///
[Description("确认标识")]
public object CommitFlag
{
get { return commitFlag; }
set
{
if (value == null)
{
commitFlag = DBNull.Value;
}
else
{
commitFlag = value;
}
}
}
///
/// 轧管规格
///
[Description("轧管规格")]
public object RollSpecCode
{
get { return rollSpecCode; }
set
{
if (value == null)
{
rollSpecCode = DBNull.Value;
}
else
{
rollSpecCode = value;
}
}
}
}
}