PipeCheckconsignSaveRecordsEntity.cs 5.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223
  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_SAVE_RECORDS所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:PC-20160918TFRG 时间:2020-05-28
  12. /// </summary>
  13. public class PipeCheckconsignSaveRecordsEntity
  14. {
  15. /// <summary>
  16. /// 检验编号
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  21. /// </summary>
  22. private string sampleNo = "";
  23. /// <summary>
  24. /// 钢号
  25. /// </summary>
  26. private string steelNo = "";
  27. /// <summary>
  28. /// 炉号
  29. /// </summary>
  30. private string heatNo = "";
  31. /// <summary>
  32. /// 外径
  33. /// </summary>
  34. private string dimater = "";
  35. /// <summary>
  36. /// 壁厚
  37. /// </summary>
  38. private string height = "";
  39. /// <summary>
  40. /// 试样组代码
  41. /// </summary>
  42. private string phyCodeMax = "";
  43. /// <summary>
  44. /// 试样组名称
  45. /// </summary>
  46. private string phyNameMax = "";
  47. /// <summary>
  48. /// 数量
  49. /// </summary>
  50. private decimal? acount = null;
  51. /// <summary>
  52. /// 保存人
  53. /// </summary>
  54. private string saveName = "";
  55. /// <summary>
  56. /// 保存时间
  57. /// </summary>
  58. private string saveTime = "";
  59. /// <summary>
  60. /// 销毁人
  61. /// </summary>
  62. private string destroyName = "";
  63. /// <summary>
  64. /// 销毁时间
  65. /// </summary>
  66. private string destroyTime = "";
  67. /// <summary>
  68. /// 检验编号
  69. /// </summary>
  70. [Description("检验编号")]
  71. [Nullable(false)]
  72. [DataLength(50)]
  73. public string CheckNo
  74. {
  75. get { return checkNo; }
  76. set { checkNo = value; }
  77. }
  78. /// <summary>
  79. /// 试样号 样管号 产线字母+年+月+四位流水 产线字母+YYMM+四位流水
  80. /// </summary>
  81. [Description("试样号")]
  82. [Nullable(false)]
  83. [DataLength(50)]
  84. public string SampleNo
  85. {
  86. get { return sampleNo; }
  87. set { sampleNo = value; }
  88. }
  89. /// <summary>
  90. /// 钢号
  91. /// </summary>
  92. [Description("钢号")]
  93. [Nullable(true)]
  94. [DataLength(50)]
  95. public string SteelNo
  96. {
  97. get { return steelNo; }
  98. set { steelNo = value; }
  99. }
  100. /// <summary>
  101. /// 炉号
  102. /// </summary>
  103. [Description("炉号 ")]
  104. [Nullable(true)]
  105. [DataLength(50)]
  106. public string HeatNo
  107. {
  108. get { return heatNo; }
  109. set { heatNo = value; }
  110. }
  111. /// <summary>
  112. /// 外径
  113. /// </summary>
  114. [Description("外径")]
  115. [Nullable(true)]
  116. [DataLength(20)]
  117. public string Dimater
  118. {
  119. get { return dimater; }
  120. set { dimater = value; }
  121. }
  122. /// <summary>
  123. /// 壁厚
  124. /// </summary>
  125. [Description("壁厚")]
  126. [Nullable(true)]
  127. [DataLength(20)]
  128. public string Height
  129. {
  130. get { return height; }
  131. set { height = value; }
  132. }
  133. /// <summary>
  134. /// 试样组代码
  135. /// </summary>
  136. [Description("试样组代码")]
  137. [Nullable(false)]
  138. [DataLength(50)]
  139. public string PhyCodeMax
  140. {
  141. get { return phyCodeMax; }
  142. set { phyCodeMax = value; }
  143. }
  144. /// <summary>
  145. /// 试样组名称
  146. /// </summary>
  147. [Description("试样组名称")]
  148. [Nullable(false)]
  149. [DataLength(100)]
  150. public string PhyNameMax
  151. {
  152. get { return phyNameMax; }
  153. set { phyNameMax = value; }
  154. }
  155. /// <summary>
  156. /// 数量
  157. /// </summary>
  158. [Description("数量")]
  159. [Nullable(true)]
  160. [DataLength(22)]
  161. public decimal? Acount
  162. {
  163. get { return acount; }
  164. set { acount = value; }
  165. }
  166. /// <summary>
  167. /// 保存人
  168. /// </summary>
  169. [Description("保存人")]
  170. [Nullable(true)]
  171. [DataLength(20)]
  172. public string SaveName
  173. {
  174. get { return saveName; }
  175. set { saveName = value; }
  176. }
  177. /// <summary>
  178. /// 保存时间
  179. /// </summary>
  180. [Description("保存时间")]
  181. [Nullable(true)]
  182. public string SaveTime
  183. {
  184. get { return saveTime; }
  185. set { saveTime = value; }
  186. }
  187. /// <summary>
  188. /// 销毁人
  189. /// </summary>
  190. [Description("销毁人")]
  191. [Nullable(true)]
  192. [DataLength(20)]
  193. public string DestroyName
  194. {
  195. get { return destroyName; }
  196. set { destroyName = value; }
  197. }
  198. /// <summary>
  199. /// 销毁时间
  200. /// </summary>
  201. [Description("销毁时间")]
  202. [Nullable(true)]
  203. public string DestroyTime
  204. {
  205. get { return destroyTime; }
  206. set { destroyTime = value; }
  207. }
  208. }
  209. }