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_CHEMDETAIL所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2019-04-18 /// public class PipeCheckconsignChemdetailEntity2 { /// /// 检验编号 /// private string checkNo = ""; /// /// 试样号 /// private string sampleNo = ""; /// /// 化学元素代码 /// private string chemCode = ""; /// /// 化学元素描述 /// private string chemName = ""; /// /// 化学元素类型(A:单一元素,B:复合元素) /// private string chemType = ""; /// /// 是否检验()1:是,0:否) /// private string ischeck = ""; /// /// 是否判定()1:是,0:否) /// private string isjudge = ""; /// /// 是否报出()1:是,0:否) /// private string isquote = ""; /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// private string complexType = ""; /// /// 复合元素计算公式 /// private string chemFormula = ""; /// /// 标准范围下限符号 /// private string stdminSign = ""; /// /// 标准范围下限 /// private string stdmin = ""; /// /// 标准范围上限符号 /// private string stdmaxSign = ""; /// /// 标准范围上限 /// private string stdmax = ""; /// /// 标准目标值 /// private string stdtarget = ""; /// /// 标准备注 /// private string stdmemo = ""; /// /// 限制元素代码 /// private string eleCode = ""; /// /// 限制元素描述 /// private string eleName = ""; /// /// 限制元素下限符号 /// private string eleMinSign = ""; /// /// 限制元素下限 /// private string eleMin = ""; /// /// 限制元素上限符号 /// private string eleMaxSign = ""; /// /// 限制元素上限 /// private string eleMax = ""; /// /// 替代元素代码 /// private string repCode = ""; /// /// 替代元素描述 /// private string repName = ""; /// /// 替代元素下限符号 /// private string repMinSign = ""; /// /// 替代元素下限 /// private string repMin = ""; /// /// 替代元素上限符号 /// private string repMaxSign = ""; /// /// 替代元素上限 /// private string repMax = ""; /// /// 替代元素值 /// private string repVal = ""; /// /// 选择标钢标准号 /// private string selectSteelNo = ""; /// /// 标钢标准值 /// private string stdSteelStdValue = ""; /// /// 标钢采集值 /// private string stdSteelProcessValue = ""; /// /// 标钢修约值 /// private string roundValue = ""; /// /// 元素采集值 /// private string processValue = ""; /// /// 元素处理值 /// private string auditValue = ""; /// /// 元素报出值 /// private string quoteValue = ""; /// /// 备注 /// private string remark = ""; /// /// 化验班次 /// private string checkClass = ""; /// /// 环境温度 /// private string checkTemp = ""; /// /// 设备编码 /// private string deviceNo = ""; /// /// 设备名称 /// private string deviceName = ""; /// /// 审核人 /// private string auditName = ""; /// /// 审核时间 /// private string auditTime = ""; /// /// 是否录入 0未录入 1录入 /// private string isCj = ""; /// /// 性能批号 /// private string batchNo = ""; /// /// 检验编号 /// [Description("检验编号")] [Nullable(false)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 试样号 /// [Description("试样号")] [Nullable(false)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 化学元素代码 /// [Description("化学元素代码")] [Nullable(false)] [DataLength(5)] public string ChemCode { get { return chemCode; } set { chemCode = value; } } /// /// 化学元素描述 /// [Description("化学元素描述")] [Nullable(true)] [DataLength(50)] public string ChemName { get { return chemName; } set { chemName = value; } } /// /// 化学元素类型(A:单一元素,B:复合元素) /// [Description("化学元素类型(A:单一元素,B:复合元素)")] [Nullable(true)] [DataLength(1)] public string ChemType { get { return chemType; } set { chemType = value; } } /// /// 是否检验()1:是,0:否) /// [Description("是否检验()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Ischeck { get { return ischeck; } set { ischeck = value; } } /// /// 是否判定()1:是,0:否) /// [Description("是否判定()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Isjudge { get { return isjudge; } set { isjudge = value; } } /// /// 是否报出()1:是,0:否) /// [Description("是否报出()1:是,0:否)")] [Nullable(true)] [DataLength(1)] public string Isquote { get { return isquote; } set { isquote = value; } } /// /// 是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算) /// [Description("是否是复合标准项(1:是,0:不是)(标准值通过公式进行计算)")] [Nullable(true)] [DataLength(1)] public string ComplexType { get { return complexType; } set { complexType = value; } } /// /// 复合元素计算公式 /// [Description("复合元素计算公式")] [Nullable(true)] [DataLength(100)] public string ChemFormula { get { return chemFormula; } set { chemFormula = value; } } /// /// 标准范围下限符号 /// [Description("标准范围下限符号")] [Nullable(true)] [DataLength(2)] public string StdminSign { get { return stdminSign; } set { stdminSign = value; } } /// /// 标准范围下限 /// [Description("标准范围下限")] [Nullable(true)] [DataLength(100)] public string Stdmin { get { return stdmin; } set { stdmin = value; } } /// /// 标准范围上限符号 /// [Description("标准范围上限符号")] [Nullable(true)] [DataLength(2)] public string StdmaxSign { get { return stdmaxSign; } set { stdmaxSign = value; } } /// /// 标准范围上限 /// [Description("标准范围上限")] [Nullable(true)] [DataLength(100)] public string Stdmax { get { return stdmax; } set { stdmax = value; } } /// /// 标准目标值 /// [Description("标准目标值")] [Nullable(true)] [DataLength(10)] public string Stdtarget { get { return stdtarget; } set { stdtarget = value; } } /// /// 标准备注 /// [Description("标准备注")] [Nullable(true)] [DataLength(200)] public string Stdmemo { get { return stdmemo; } set { stdmemo = value; } } /// /// 限制元素代码 /// [Description("限制元素代码")] [Nullable(true)] [DataLength(20)] public string EleCode { get { return eleCode; } set { eleCode = value; } } /// /// 限制元素描述 /// [Description("限制元素描述")] [Nullable(true)] [DataLength(50)] public string EleName { get { return eleName; } set { eleName = value; } } /// /// 限制元素下限符号 /// [Description("限制元素下限符号")] [Nullable(true)] [DataLength(2)] public string EleMinSign { get { return eleMinSign; } set { eleMinSign = value; } } /// /// 限制元素下限 /// [Description("限制元素下限")] [Nullable(true)] [DataLength(10)] public string EleMin { get { return eleMin; } set { eleMin = value; } } /// /// 限制元素上限符号 /// [Description("限制元素上限符号")] [Nullable(true)] [DataLength(2)] public string EleMaxSign { get { return eleMaxSign; } set { eleMaxSign = value; } } /// /// 限制元素上限 /// [Description("限制元素上限")] [Nullable(true)] [DataLength(10)] public string EleMax { get { return eleMax; } set { eleMax = value; } } /// /// 替代元素代码 /// [Description("替代元素代码")] [Nullable(true)] [DataLength(20)] public string RepCode { get { return repCode; } set { repCode = value; } } /// /// 替代元素描述 /// [Description("替代元素描述")] [Nullable(true)] [DataLength(50)] public string RepName { get { return repName; } set { repName = value; } } /// /// 替代元素下限符号 /// [Description("替代元素下限符号")] [Nullable(true)] [DataLength(2)] public string RepMinSign { get { return repMinSign; } set { repMinSign = value; } } /// /// 替代元素下限 /// [Description("替代元素下限")] [Nullable(true)] [DataLength(10)] public string RepMin { get { return repMin; } set { repMin = value; } } /// /// 替代元素上限符号 /// [Description("替代元素上限符号")] [Nullable(true)] [DataLength(2)] public string RepMaxSign { get { return repMaxSign; } set { repMaxSign = value; } } /// /// 替代元素上限 /// [Description("替代元素上限")] [Nullable(true)] [DataLength(10)] public string RepMax { get { return repMax; } set { repMax = value; } } /// /// 替代元素值 /// [Description("替代元素值")] [Nullable(true)] [DataLength(10)] public string RepVal { get { return repVal; } set { repVal = value; } } /// /// 选择标钢标准号 /// [Description("选择标钢标准号")] [Nullable(true)] [DataLength(50)] public string SelectSteelNo { get { return selectSteelNo; } set { selectSteelNo = value; } } /// /// 标钢标准值 /// [Description("标钢标准值")] [Nullable(true)] [DataLength(20)] public string StdSteelStdValue { get { return stdSteelStdValue; } set { stdSteelStdValue = value; } } /// /// 标钢采集值 /// [Description("标钢采集值")] [Nullable(true)] [DataLength(20)] public string StdSteelProcessValue { get { return stdSteelProcessValue; } set { stdSteelProcessValue = value; } } /// /// 标钢修约值 /// [Description("标钢修约值")] [Nullable(true)] [DataLength(20)] public string RoundValue { get { return roundValue; } set { roundValue = value; } } /// /// 元素采集值 /// [Description("元素采集值")] [Nullable(true)] [DataLength(20)] public string ProcessValue { get { return processValue; } set { processValue = value; } } /// /// 元素处理值 /// [Description("元素处理值")] [Nullable(true)] [DataLength(20)] public string AuditValue { get { return auditValue; } set { auditValue = value; } } /// /// 元素报出值 /// [Description("元素报出值")] [Nullable(true)] [DataLength(20)] public string QuoteValue { get { return quoteValue; } set { quoteValue = value; } } /// /// 备注 /// [Description("备注")] [Nullable(true)] [DataLength(400)] public string Remark { get { return remark; } set { remark = value; } } /// /// 化验班次 /// [Description("化验班次")] [Nullable(true)] [DataLength(20)] public string CheckClass { get { return checkClass; } set { checkClass = value; } } /// /// 环境温度 /// [Description("环境温度")] [Nullable(true)] [DataLength(50)] public string CheckTemp { get { return checkTemp; } set { checkTemp = value; } } /// /// 设备编码 /// [Description("设备编码")] [Nullable(true)] [DataLength(50)] public string DeviceNo { get { return deviceNo; } set { deviceNo = value; } } /// /// 设备名称 /// [Description("设备名称")] [Nullable(true)] [DataLength(50)] public string DeviceName { get { return deviceName; } set { deviceName = value; } } /// /// 审核人 /// [Description("审核人")] [Nullable(true)] [DataLength(20)] public string AuditName { get { return auditName; } set { auditName = value; } } /// /// 审核时间 /// [Description("审核时间")] [Nullable(true)] public string AuditTime { get { return auditTime; } set { auditTime = value; } } /// /// 是否录入 0未录入 1录入 /// [Description("是否录入 0未录入 1录入")] [Nullable(true)] [DataLength(1)] public string IsCj { get { return isCj; } set { isCj = value; } } /// /// 性能批号 /// [Description("性能批号")] [Nullable(true)] [DataLength(20)] public string BatchNo { get { return batchNo; } set { batchNo = value; } } } }