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.数据管理.实体类 { /// /// 数据库表QCM_ZC_CHECKCONSIGN_DETAIL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:DM22222 时间:2018-12-06 /// public class QcmZcCheckconsignDetailEntity { /// /// 检验编号 /// private string checkNo = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 试样号 /// private string sampleNo = ""; /// /// 试样组代码 /// private string phyCodeMax = ""; /// /// 试样组名称 /// private string phyNameMax = ""; /// /// 取样频率代码(4011)(组批要求,支数限制) /// private string rate = ""; /// /// 取样频率描述 /// private string descRate = ""; /// /// 试样码 /// private string eic = ""; /// /// 样条号 /// private string sampleNoMin = ""; /// /// 样条数GS /// private string sampleCount = ""; /// /// 取样长度 /// private string sampleLen = ""; /// /// 样管管号 /// private string matNo = ""; /// /// 管头编号 /// private string headMatNo = ""; /// /// 管序号 /// private string barCode = ""; /// /// 内控判定结果 0 不合 1合格 /// private string nkResult = ""; /// /// 交付判定结果 0不合 1合格 /// private string jfResult = ""; /// /// 判定结果来源(0系统 1人工) /// private string resultSource = ""; /// /// 是否报出 (0未报出 1已报出) -----(暂未启用)------ /// private string isQuote = ""; /// /// 有效标志(0无效 1有效) /// private string validflag = ""; /// /// 原判定炉号 /// private string oldJudgeStoveNo = ""; /// /// 原性能批号 /// private string oldBatchNo = ""; /// /// 是否主炉号(0否 1是) /// private string isMain = ""; /// /// 创建时间 /// private string createTime = ""; /// /// 检验编号 /// [Description("检验编号")] [Nullable(false)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 性能批号 /// [Description("性能批号")] [Nullable(false)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } /// /// 试样号 /// [Description("试样号 ")] [Nullable(false)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 试样组代码 /// [Description("试样组代码")] [Nullable(false)] [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; } } /// /// 取样频率代码(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(8)] public string Eic { get { return eic; } set { eic = value; } } /// /// 样条号 /// [Description("样条号")] [Nullable(true)] [DataLength(40)] public string SampleNoMin { get { return sampleNoMin; } set { sampleNoMin = value; } } /// /// 样条数GS /// [Description("样条数GS")] [Nullable(true)] [DataLength(2)] public string SampleCount { get { return sampleCount; } set { sampleCount = value; } } /// /// 取样长度 /// [Description("取样长度")] [Nullable(true)] [DataLength(20)] public string SampleLen { get { return sampleLen; } set { sampleLen = value; } } /// /// 样管管号 /// [Description("样管管号")] [Nullable(true)] [DataLength(20)] public string MatNo { get { return matNo; } set { matNo = value; } } /// /// 管头编号 /// [Description("管头编号")] [Nullable(true)] [DataLength(20)] public string HeadMatNo { get { return headMatNo; } set { headMatNo = value; } } /// /// 管序号 /// [Description("管序号")] [Nullable(true)] [DataLength(20)] public string BarCode { get { return barCode; } set { barCode = value; } } /// /// 内控判定结果 0 不合 1合格 /// [Description("内控判定结果")] [Nullable(true)] [DataLength(20)] public string NkResult { get { return nkResult; } set { nkResult = value; } } /// /// 交付判定结果 0不合 1合格 /// [Description("交付判定结果")] [Nullable(true)] [DataLength(20)] public string JfResult { get { return jfResult; } set { jfResult = value; } } /// /// 判定结果来源(0系统 1人工) /// [Description("判定结果来源(0系统 1人工)")] [Nullable(true)] [DataLength(1)] public string ResultSource { get { return resultSource; } set { resultSource = value; } } /// /// 是否报出 (0未报出 1已报出) -----(暂未启用)------ /// [Description("是否报出 (0未报出 1已报出) -----(暂未启用)------")] [Nullable(true)] [DataLength(1)] public string IsQuote { get { return isQuote; } set { isQuote = value; } } /// /// 有效标志(0无效 1有效) /// [Description("有效标志(0无效 1有效)")] [Nullable(true)] [DataLength(1)] public string Validflag { get { return validflag; } set { validflag = value; } } /// /// 原判定炉号 /// [Description("原判定炉号")] [Nullable(true)] [DataLength(6)] public string OldJudgeStoveNo { get { return oldJudgeStoveNo; } set { oldJudgeStoveNo = value; } } /// /// 原性能批号 /// [Description("原性能批号")] [Nullable(true)] [DataLength(20)] public string OldBatchNo { get { return oldBatchNo; } set { oldBatchNo = value; } } /// /// 是否主炉号(0否 1是) /// [Description("是否主炉号(0否 1是)")] [Nullable(false)] [DataLength(1)] public string IsMain { get { return isMain; } set { isMain = value; } } /// /// 创建时间 /// [Description("创建时间")] [Nullable(true)] public string CreateTime { get { return createTime; } set { createTime = value; } } } }