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_SSC3_PARM所对应的实体类(生成工具:代码生成工具3.0) /// 作者:PC-20160918TFRG 时间:2020-06-13 /// public class PipeCheckconsignSsc3ParmEntity { /// /// 检验编号 /// private string checkNo = ""; /// /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水 /// private string sampleNo = ""; private string sampleNo2 = ""; /// /// 试样组代码 /// private string phyCodeMax = ""; /// /// 序号 /// private decimal? seq = null; /// /// 试样尺寸 /// private string specimenSize = ""; /// /// 虚拟应力(S) 值(MPa) /// private string pseudoStress = ""; /// /// 加载挠度(mm) /// private string loadDeflection = ""; /// /// 试验结果 (+1 未破坏,-1破坏) /// private string testResults = ""; /// /// 初始SC值 /// private string scValue1 = ""; /// /// 报告SC值 /// private string scValue2 = ""; /// /// 是否有效(1有效0无效) /// private string isOk = ""; /// /// 检验编号 /// [Description("检验编号")] [Nullable(false)] [DataLength(50)] public string CheckNo { get { return checkNo; } set { checkNo = value; } } /// /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水 /// [Description("试样号")] [Nullable(false)] [DataLength(50)] public string SampleNo { get { return sampleNo; } set { sampleNo = value; } } /// /// 试样号带序号 /// [Description("试 样 号")] [Nullable(false)] [DataLength(50)] public string SampleNo2 { get { return sampleNo2; } set { sampleNo2 = value; } } /// /// 试样组代码 /// [Description("试样组代码")] [Nullable(false)] [DataLength(50)] public string PhyCodeMax { get { return phyCodeMax; } set { phyCodeMax = value; } } /// /// 序号 /// [Description("序号")] [Nullable(false)] [DataLength(50)] public decimal? Seq { get { return seq; } set { seq = value; } } /// /// 试样尺寸 /// [Description("试 样 尺 寸")] [Nullable(true)] [DataLength(50)] public string SpecimenSize { get { return specimenSize; } set { specimenSize = value; } } /// /// 虚拟应力(S) 值(MPa) /// [Description("虚拟应力(S) 值(MPa)")] [Nullable(true)] [DataLength(20)] public string PseudoStress { get { return pseudoStress; } set { pseudoStress = value; } } /// /// 加载挠度(mm) /// [Description("加载挠度(mm)")] [Nullable(true)] [DataLength(20)] public string LoadDeflection { get { return loadDeflection; } set { loadDeflection = value; } } /// /// 试验结果 (+1 未破坏,-1破坏) /// [Description("试验结果")] [Nullable(true)] [DataLength(2)] public string TestResults { get { return testResults; } set { testResults = value; } } /// /// 初始SC值 /// [Description("初始SC值")] [Nullable(true)] [DataLength(20)] public string ScValue1 { get { return scValue1; } set { scValue1 = value; } } /// /// 报告SC值 /// [Description("报告SC值")] [Nullable(true)] [DataLength(20)] public string ScValue2 { get { return scValue2; } set { scValue2 = value; } } /// /// 是否有效(1有效0无效) /// [Description("是否有效(1有效0无效)")] [Nullable(true)] [DataLength(1)] public string IsOk { get { return isOk; } set { isOk = value; } } } }