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.Data.PipeAndOutdec.封装类.实体类 { /// /// 数据库表PIPE_CHECKCONSIGN_SPLINECODE所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-05-29 /// public class PipeCheckconsignSplinecodeEntity { /// /// 检验项目明细编号 /// private string physplineId = ""; /// /// 检验编号 /// private string checkNo = ""; /// /// 试样号 /// private string sampleNo = ""; /// /// 试样组代码 /// private string phyCodeMax = ""; /// /// 试样组名称 /// private string phyNameMax = ""; /// /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0) /// private string sampleBarcode = ""; /// /// 年月 /// private string balYearMoth = ""; /// /// 十进制数值 /// private decimal? tenNum = null; /// /// 检验项目明细编号 /// [Description("检验项目明细编号")] [Nullable(false)] [DataLength(50)] public string PhysplineId { get { return physplineId; } set { physplineId = value; } } /// /// 检验编号 /// [Description("检验编号")] [Nullable(true)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 试样号 /// [Description("试样号")] [Nullable(true)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 试样组代码 /// [Description("试样组代码")] [Nullable(true)] [DataLength(50)] public string PhyCodeMax { get { return phyCodeMax; } set { phyCodeMax = value; } } /// /// 试样组名称 /// [Description("试样组名称")] [Nullable(true)] [DataLength(100)] public string PhyNameMax { get { return phyNameMax; } set { phyNameMax = value; } } /// /// 样条码(4位\同一试样组下样条码一致,除硫化氢末尾1--4 纵向末尾T 其他0) /// [Description("样条码")] [Nullable(true)] [DataLength(50)] public string SampleBarcode { get { return sampleBarcode; } set { sampleBarcode = value; } } /// /// 年月 /// [Description("年月")] [Nullable(true)] [DataLength(6)] public string BalYearMoth { get { return balYearMoth; } set { balYearMoth = value; } } /// /// 十进制数值 /// [Description("十进制数值")] [Nullable(true)] [DataLength(22)] public decimal? TenNum { get { return tenNum; } set { tenNum = value; } } } }