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.Lims.Port.数据管理.实体类
{
///
/// 数据库表CRAFT_SAMPLING_DETAIL所对应的实体类(生成工具:代码生成工具3.0)
/// 作者:DM22222 时间:2018-05-14
///
public class CraftSamplingDetailEntity
{
///
/// 工艺文件号
///
private string craftNo = "";
///
/// 工序代码
///
private string processCode = "";
///
/// 0;正常,1:首检增项
///
private string type = "";
///
/// 试样编号
///
private string splineNo = "";
///
/// 取样码
///
private string phyCodeMin = "";
///
/// 取样码描述
///
private string phyNameMin = "";
///
/// 取样频率代码(4011)(组批要求,支数限制)
///
private string rate = "";
///
/// 取样频率描述
///
private string descRate = "";
///
/// 分批单位(米/支/吨)
///
private string batchUnit = "";
///
/// 每批支数 改成 分批数量
///
private decimal? batchCnt = null;
///
/// 取样数量
///
private decimal? descCount = null;
///
/// 试验样条数
///
private decimal? sampleCount = null;
///
/// 取样位置代码(4012)
///
private string position = "";
///
/// 取样位置描述
///
private string descPosition = "";
///
/// 取样长度代码
///
private string length = "";
///
/// 取样宽度
///
private decimal? width = null;
///
/// 样片类型( 环 或 片)(COM_BASE_SPLINE)
///
private string sampleStyle = "";
///
/// 样片类型描述
///
private string sampleStyleDesc = "";
///
/// 试样组代码
///
private string phyCodeGroup = "";
///
/// 试样组代码描述
///
private string phyNameGroup = "";
///
/// 附加1(%)
///
private decimal? attachPercent = null;
///
/// 附加2(支)
///
private decimal? attachCount = null;
///
/// 前几炉
///
private decimal? topStove = null;
///
/// 循环值
///
private decimal? loopValue = null;
///
/// ORD_LN_PK(ORD_PK+三位流失号)
///
private string ordLnPk = "";
///
/// 序号
///
private decimal? craftSeq = null;
///
/// 工艺文件号
///
[Description("工艺文件号")]
[Nullable(false)]
[DataLength(150)]
public string CraftNo
{
get { return craftNo; }
set { craftNo = value; }
}
///
/// 工序代码
///
[Description("工序代码")]
[Nullable(false)]
[DataLength(100)]
public string ProcessCode
{
get { return processCode; }
set { processCode = value; }
}
///
/// 0;正常,1:首检增项
///
[Description("0;正常,1:首检增项")]
[Nullable(true)]
[DataLength(2)]
public string Type
{
get { return type; }
set { type = value; }
}
///
/// 试样编号
///
[Description("试样编号")]
[Nullable(false)]
[DataLength(10)]
public string SplineNo
{
get { return splineNo; }
set { splineNo = value; }
}
///
/// 取样码
///
[Description("取样码")]
[Nullable(false)]
[DataLength(5)]
public string PhyCodeMin
{
get { return phyCodeMin; }
set { phyCodeMin = value; }
}
///
/// 取样码描述
///
[Description("取样码描述")]
[Nullable(false)]
[DataLength(100)]
public string PhyNameMin
{
get { return phyNameMin; }
set { phyNameMin = value; }
}
///
/// 取样频率代码(4011)(组批要求,支数限制)
///
[Description("取样频率代码(4011)(组批要求,支数限制)")]
[Nullable(true)]
[DataLength(20)]
public string Rate
{
get { return rate; }
set { rate = value; }
}
///
/// 取样频率描述
///
[Description("取样频率描述")]
[Nullable(true)]
[DataLength(200)]
public string DescRate
{
get { return descRate; }
set { descRate = value; }
}
///
/// 分批单位(米/支/吨)
///
[Description("分批单位(米/支/吨)")]
[Nullable(true)]
[DataLength(20)]
public string BatchUnit
{
get { return batchUnit; }
set { batchUnit = value; }
}
///
/// 每批支数 改成 分批数量
///
[Description("每批支数 改成 分批数量")]
[Nullable(true)]
[DataLength(22)]
public decimal? BatchCnt
{
get { return batchCnt; }
set { batchCnt = value; }
}
///
/// 取样数量
///
[Description("取样数量")]
[Nullable(true)]
[DataLength(22)]
public decimal? DescCount
{
get { return descCount; }
set { descCount = value; }
}
///
/// 试验样条数
///
[Description("试验样条数")]
[Nullable(true)]
[DataLength(22)]
public decimal? SampleCount
{
get { return sampleCount; }
set { sampleCount = value; }
}
///
/// 取样位置代码(4012)
///
[Description("取样位置代码(4012)")]
[Nullable(true)]
[DataLength(20)]
public string Position
{
get { return position; }
set { position = value; }
}
///
/// 取样位置描述
///
[Description("取样位置描述")]
[Nullable(true)]
[DataLength(200)]
public string DescPosition
{
get { return descPosition; }
set { descPosition = value; }
}
///
/// 取样长度代码
///
[Description("取样长度代码")]
[Nullable(true)]
[DataLength(20)]
public string Length
{
get { return length; }
set { length = value; }
}
///
/// 取样宽度
///
[Description("取样宽度")]
[Nullable(true)]
[DataLength(22)]
public decimal? Width
{
get { return width; }
set { width = value; }
}
///
/// 样片类型( 环 或 片)(COM_BASE_SPLINE)
///
[Description("样片类型( 环 或 片)(COM_BASE_SPLINE)")]
[Nullable(true)]
[DataLength(6)]
public string SampleStyle
{
get { return sampleStyle; }
set { sampleStyle = value; }
}
///
/// 样片类型描述
///
[Description("样片类型描述")]
[Nullable(true)]
[DataLength(16)]
public string SampleStyleDesc
{
get { return sampleStyleDesc; }
set { sampleStyleDesc = value; }
}
///
/// 试样组代码
///
[Description("试样组代码")]
[Nullable(false)]
[DataLength(200)]
public string PhyCodeGroup
{
get { return phyCodeGroup; }
set { phyCodeGroup = value; }
}
///
/// 试样组代码描述
///
[Description("试样组代码描述")]
[Nullable(false)]
[DataLength(200)]
public string PhyNameGroup
{
get { return phyNameGroup; }
set { phyNameGroup = value; }
}
///
/// 附加1(%)
///
[Description("附加1(%)")]
[Nullable(true)]
[DataLength(5)]
public decimal? AttachPercent
{
get { return attachPercent; }
set { attachPercent = value; }
}
///
/// 附加2(支)
///
[Description("附加2(支)")]
[Nullable(true)]
[DataLength(22)]
public decimal? AttachCount
{
get { return attachCount; }
set { attachCount = value; }
}
///
/// 前几炉
///
[Description("前几炉")]
[Nullable(true)]
[DataLength(22)]
public decimal? TopStove
{
get { return topStove; }
set { topStove = value; }
}
///
/// 循环值
///
[Description("循环值")]
[Nullable(true)]
[DataLength(22)]
public decimal? LoopValue
{
get { return loopValue; }
set { loopValue = value; }
}
///
/// ORD_LN_PK(ORD_PK+三位流失号)
///
[Description("ORD_LN_PK(ORD_PK+三位流失号)")]
[Nullable(true)]
[DataLength(40)]
public string OrdLnPk
{
get { return ordLnPk; }
set { ordLnPk = value; }
}
///
/// 序号
///
[Description("序号")]
[Nullable(true)]
[DataLength(22)]
public decimal? CraftSeq
{
get { return craftSeq; }
set { craftSeq = value; }
}
}
}