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_M所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-05-14 /// public class CraftSamplingMEntity { /// /// 工艺文件号 /// private string craftNo = ""; /// /// 工序代码 /// private string processCode = ""; /// /// 根据批数分情况讨论 /// private decimal? batchNum = null; /// /// 第几批 /// private decimal? batchNo = null; /// /// 无注释 /// private decimal? sampleLength = null; /// /// 取样位置代码(4012) /// private string position = ""; /// /// 取样位置描述 /// private string descPosition = ""; /// /// 样管个数 /// private decimal? sampleCount = null; /// /// 备注 /// private string remark = ""; /// /// 试样组集合 /// private string phyNameGroup = ""; /// /// 试样组代码集合 /// private string phyCodeGroup = ""; /// /// 根据炉数分情况讨论,可能是公式 5n+2 或者<=2 /// private string stoveNum = ""; /// /// 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; } } /// /// 根据批数分情况讨论 /// [Description("根据批数分情况讨论")] [Nullable(true)] [DataLength(22)] public decimal? BatchNum { get { return batchNum; } set { batchNum = value; } } /// /// 第几批 /// [Description("第几批")] [Nullable(true)] [DataLength(22)] public decimal? BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 无注释 /// [Description("无注释")] [Nullable(true)] [DataLength(22)] public decimal? SampleLength { get { return sampleLength; } set { sampleLength = 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(22)] public decimal? SampleCount { get { return sampleCount; } set { sampleCount = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(200)] public string Remark { get { return remark; } set { remark = value; } } /// /// 试样组集合 /// [Description("试样组集合")] [Nullable(true)] [DataLength(200)] public string PhyNameGroup { get { return phyNameGroup; } set { phyNameGroup = value; } } /// /// 试样组代码集合 /// [Description("试样组代码集合")] [Nullable(true)] [DataLength(200)] public string PhyCodeGroup { get { return phyCodeGroup; } set { phyCodeGroup = value; } } /// /// 根据炉数分情况讨论,可能是公式 5n+2 或者<=2 /// [Description("根据炉数分情况讨论,可能是公式 5n+2 或者<=2")] [Nullable(true)] [DataLength(20)] public string StoveNum { get { return stoveNum; } set { stoveNum = 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; } } } }