PipeCheckconsignSsc3ParmEntity.cs 5.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205
  1. using Core.Mes.Client.Comm.Attribute;
  2. using System;
  3. using System.Collections.Generic;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Text;
  7. namespace Core.StlMes.Client.Lims.Data.PipeAndOutdec.封装类.实体类
  8. {
  9. /// <summary>
  10. /// 数据库表PIPE_CHECKCONSIGN_SSC3_PARM所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160918TFRG 时间:2020-06-13
  12. /// </summary>
  13. public class PipeCheckconsignSsc3ParmEntity
  14. {
  15. /// <summary>
  16. /// 检验编号
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  21. /// </summary>
  22. private string sampleNo = "";
  23. private string sampleNo2 = "";
  24. /// <summary>
  25. /// 试样组代码
  26. /// </summary>
  27. private string phyCodeMax = "";
  28. /// <summary>
  29. /// 序号
  30. /// </summary>
  31. private decimal? seq = null;
  32. /// <summary>
  33. /// 试样尺寸
  34. /// </summary>
  35. private string specimenSize = "";
  36. /// <summary>
  37. /// 虚拟应力(S) 值(MPa)
  38. /// </summary>
  39. private string pseudoStress = "";
  40. /// <summary>
  41. /// 加载挠度(mm)
  42. /// </summary>
  43. private string loadDeflection = "";
  44. /// <summary>
  45. /// 试验结果 (+1 未破坏,-1破坏)
  46. /// </summary>
  47. private string testResults = "";
  48. /// <summary>
  49. /// 初始SC值
  50. /// </summary>
  51. private string scValue1 = "";
  52. /// <summary>
  53. /// 报告SC值
  54. /// </summary>
  55. private string scValue2 = "";
  56. /// <summary>
  57. /// 是否有效(1有效0无效)
  58. /// </summary>
  59. private string isOk = "";
  60. /// <summary>
  61. /// 检验编号
  62. /// </summary>
  63. [Description("检验编号")]
  64. [Nullable(false)]
  65. [DataLength(50)]
  66. public string CheckNo
  67. {
  68. get { return checkNo; }
  69. set { checkNo = value; }
  70. }
  71. /// <summary>
  72. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  73. /// </summary>
  74. [Description("试样号")]
  75. [Nullable(false)]
  76. [DataLength(50)]
  77. public string SampleNo
  78. {
  79. get { return sampleNo; }
  80. set { sampleNo = value; }
  81. }
  82. /// <summary>
  83. /// 试样号带序号
  84. /// </summary>
  85. [Description("试 样 号")]
  86. [Nullable(false)]
  87. [DataLength(50)]
  88. public string SampleNo2
  89. {
  90. get { return sampleNo2; }
  91. set { sampleNo2 = value; }
  92. }
  93. /// <summary>
  94. /// 试样组代码
  95. /// </summary>
  96. [Description("试样组代码")]
  97. [Nullable(false)]
  98. [DataLength(50)]
  99. public string PhyCodeMax
  100. {
  101. get { return phyCodeMax; }
  102. set { phyCodeMax = value; }
  103. }
  104. /// <summary>
  105. /// 序号
  106. /// </summary>
  107. [Description("序号")]
  108. [Nullable(false)]
  109. [DataLength(50)]
  110. public decimal? Seq
  111. {
  112. get { return seq; }
  113. set { seq = value; }
  114. }
  115. /// <summary>
  116. /// 试样尺寸
  117. /// </summary>
  118. [Description("试 样 尺 寸")]
  119. [Nullable(true)]
  120. [DataLength(50)]
  121. public string SpecimenSize
  122. {
  123. get { return specimenSize; }
  124. set { specimenSize = value; }
  125. }
  126. /// <summary>
  127. /// 虚拟应力(S) 值(MPa)
  128. /// </summary>
  129. [Description("虚拟应力(S) 值(MPa)")]
  130. [Nullable(true)]
  131. [DataLength(20)]
  132. public string PseudoStress
  133. {
  134. get { return pseudoStress; }
  135. set { pseudoStress = value; }
  136. }
  137. /// <summary>
  138. /// 加载挠度(mm)
  139. /// </summary>
  140. [Description("加载挠度(mm)")]
  141. [Nullable(true)]
  142. [DataLength(20)]
  143. public string LoadDeflection
  144. {
  145. get { return loadDeflection; }
  146. set { loadDeflection = value; }
  147. }
  148. /// <summary>
  149. /// 试验结果 (+1 未破坏,-1破坏)
  150. /// </summary>
  151. [Description("试验结果")]
  152. [Nullable(true)]
  153. [DataLength(2)]
  154. public string TestResults
  155. {
  156. get { return testResults; }
  157. set { testResults = value; }
  158. }
  159. /// <summary>
  160. /// 初始SC值
  161. /// </summary>
  162. [Description("初始SC值")]
  163. [Nullable(true)]
  164. [DataLength(20)]
  165. public string ScValue1
  166. {
  167. get { return scValue1; }
  168. set { scValue1 = value; }
  169. }
  170. /// <summary>
  171. /// 报告SC值
  172. /// </summary>
  173. [Description("报告SC值")]
  174. [Nullable(true)]
  175. [DataLength(20)]
  176. public string ScValue2
  177. {
  178. get { return scValue2; }
  179. set { scValue2 = value; }
  180. }
  181. /// <summary>
  182. /// 是否有效(1有效0无效)
  183. /// </summary>
  184. [Description("是否有效(1有效0无效)")]
  185. [Nullable(true)]
  186. [DataLength(1)]
  187. public string IsOk
  188. {
  189. get { return isOk; }
  190. set { isOk = value; }
  191. }
  192. }
  193. }