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.数据管理.实体类 { /// /// 数据库表PIPE_CHECKCONSIGN_NOQUALIFIED所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-06-05 /// public class PipeCheckconsignNoqualifiedEntity { /// /// 检验项目明细编号 /// private string phydetailId = ""; /// /// 检验编号 /// private string checkNo = ""; /// /// 试样号 /// private string sampleNo = ""; /// /// 试样组代码 /// private string phyCodeMax = ""; /// /// 试样组名称 /// private string phyNameMax = ""; /// /// 检验大项代码 /// private string phyCodeMin = ""; /// /// 检验大项名称 /// private string phyNameMin = ""; /// /// 材质检验项代码 (检验项) /// private string phyCode = ""; /// /// 材质检验项名称 /// private string phyName = ""; /// /// 交付是否合格(1合格 0不合格) /// private string jfQualified = ""; /// /// 内控是否合格 (1合格 0不合格) /// private string nkQualified = ""; /// /// 生产批号 /// private string lotNo = ""; /// /// 判定炉号 /// private string judgeStoveNo = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 是否复取样(0,正常 1已复取样) /// private string isSample = ""; /// /// 产线代码 /// private string plineCode = ""; /// /// 是否原样管取样 /// private string isOriginal = ""; /// /// 取几倍样 /// private string sampleCount = ""; /// /// 试验方向代码 /// private string itemCodeF = ""; /// /// 试验方向 /// private string itemNameF = ""; /// /// 试验温度代码 /// private string itemCodeW = ""; /// /// 试验温度 /// private string itemNameW = ""; /// /// 试验尺寸代码 /// private string itemCodeS = ""; /// /// 试验尺寸 /// private string itemNameS = ""; /// /// 试验方向 /// [Description("试验方向代码")] [Nullable(false)] [DataLength(50)] public string ItemCodeF { get { return itemCodeF; } set { itemCodeF = value; } } /// /// 试验方向 /// [Description("试验方向")] [Nullable(false)] [DataLength(50)] public string ItemNameF { get { return itemNameF; } set { itemNameF = value; } } /// /// 试验温度代码 /// [Description("试验温度代码")] [Nullable(false)] [DataLength(50)] public string ItemCodeW { get { return itemCodeW; } set { itemCodeW = value; } } /// /// 试验温度 /// [Description("试验温度")] [Nullable(false)] [DataLength(50)] public string ItemNameW { get { return itemNameF; } set { itemNameF = value; } } /// /// 试验尺寸代码 /// [Description("试验尺寸代码")] [Nullable(false)] [DataLength(50)] public string ItemCodeS { get { return itemCodeS; } set { itemCodeS = value; } } /// /// 试验尺寸 /// [Description("试验尺寸")] [Nullable(false)] [DataLength(50)] public string ItemNameS { get { return itemNameS; } set { itemNameS = value; } } /// /// 是否原样管取样 /// [Description("取几倍样")] [Nullable(false)] [DataLength(50)] public string SampleCount { get { return sampleCount; } set { sampleCount = value; } } /// /// 是否原样管取样 /// [Description("是否原样管取样")] [Nullable(false)] [DataLength(50)] public string IsOriginal { get { return isOriginal; } set { isOriginal = value; } } /// /// 检验项目明细编号 /// [Description("检验项目明细编号")] [Nullable(false)] [DataLength(50)] public string PhydetailId { get { return phydetailId; } set { phydetailId = 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; } } /// /// 检验大项代码 /// [Description("检验大项代码")] [Nullable(true)] [DataLength(5)] public string PhyCodeMin { get { return phyCodeMin; } set { phyCodeMin = value; } } /// /// 检验大项名称 /// [Description("检验大项")] [Nullable(true)] [DataLength(100)] public string PhyNameMin { get { return phyNameMin; } set { phyNameMin = value; } } /// /// 材质检验项代码 (检验项) /// [Description("材质检验项代码 (检验项)")] [Nullable(true)] [DataLength(5)] public string PhyCode { get { return phyCode; } set { phyCode = value; } } /// /// 材质检验项名称 /// [Description("基础检验项")] [Nullable(true)] [DataLength(100)] public string PhyName { get { return phyName; } set { phyName = value; } } /// /// 交付是否合格(1合格 0不合格) /// [Description("交付是否合格")] [Nullable(true)] [DataLength(1)] public string JfQualified { get { return jfQualified; } set { jfQualified = value; } } /// /// 内控是否合格 (1合格 0不合格) /// [Description("内控是否合格")] [Nullable(true)] [DataLength(1)] public string NkQualified { get { return nkQualified; } set { nkQualified = value; } } /// /// 生产批号 /// [Description("生产批号")] [Nullable(true)] [DataLength(50)] public string LotNo { get { return lotNo; } set { lotNo = value; } } /// /// 判定炉号 /// [Description("判定炉号")] [Nullable(true)] [DataLength(50)] public string JudgeStoveNo { get { return judgeStoveNo; } set { judgeStoveNo = value; } } /// /// 性能批号 /// [Description("性能批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 是否复取样(0,正常 1已复取样) /// [Description("是否复取样")] [Nullable(true)] [DataLength(1)] public string IsSample { get { return isSample; } set { isSample = value; } } /// /// 产线代码 /// [Description("产线代码")] [Nullable(true)] [DataLength(4)] public string PlineCode { get { return plineCode; } set { plineCode = value; } } } }