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