SlmOrdDesignStdWicEntity.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Linq;
  5. using System.Text;
  6. using Core.Mes.Client.Comm.Attribute;
  7. namespace Core.StlMes.Client.SaleOrder
  8. {
  9. /// <summary>
  10. /// 数据库表SLM_ORD_DESIGN_STD_WIC所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:Chenxi-PC2 时间:2015-09-17
  12. /// </summary>
  13. public class SlmOrdDesignStdWicEntity
  14. {
  15. /// <summary>
  16. /// DESGIN_KEY
  17. /// </summary>
  18. private string desginKey = "";
  19. /// <summary>
  20. /// 水压索引码
  21. /// </summary>
  22. private string wic = "";
  23. /// <summary>
  24. /// 协议或Alpha代码(用途码)
  25. /// </summary>
  26. private string useCode = "";
  27. /// <summary>
  28. /// 协议或Alpha描述(用途描述)
  29. /// </summary>
  30. private string useDesc = "";
  31. /// <summary>
  32. /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准)
  33. /// </summary>
  34. private string speclFl = "";
  35. /// <summary>
  36. /// 序号
  37. /// </summary>
  38. private decimal? indexSeq = null;
  39. /// <summary>
  40. /// 试验压力(psi)(英制)
  41. /// </summary>
  42. private string pressureY = "";
  43. /// <summary>
  44. /// 试验压力(MPa)(公制)
  45. /// </summary>
  46. private string pressure = "";
  47. /// <summary>
  48. /// 试验压力(公式)
  49. /// </summary>
  50. private string formula = "";
  51. /// <summary>
  52. /// 保压时间(S)
  53. /// </summary>
  54. private string saveTime = "";
  55. /// <summary>
  56. /// 取大值
  57. /// </summary>
  58. private string getMaxvalue = "";
  59. /// <summary>
  60. /// 取小值
  61. /// </summary>
  62. private string getMinvalue = "";
  63. /// <summary>
  64. /// 标准试验压力系数
  65. /// </summary>
  66. private decimal? ratioStd = null;
  67. /// <summary>
  68. /// 替代试验压力系数
  69. /// </summary>
  70. private decimal? ratioReplace = null;
  71. /// <summary>
  72. /// 最大试验压力
  73. /// </summary>
  74. private string maxPress = "";
  75. /// <summary>
  76. /// DESGIN_KEY
  77. /// </summary>
  78. [Description("DESGIN_KEY")]
  79. [Nullable(false)]
  80. [DataLength(40)]
  81. public string DesginKey
  82. {
  83. get { return desginKey; }
  84. set { desginKey = value; }
  85. }
  86. /// <summary>
  87. /// 水压索引码
  88. /// </summary>
  89. [Description("水压索引码")]
  90. [Nullable(false)]
  91. [DataLength(20)]
  92. public string Wic
  93. {
  94. get { return wic; }
  95. set { wic = value; }
  96. }
  97. /// <summary>
  98. /// 协议或Alpha代码(用途码)
  99. /// </summary>
  100. [Description("用途码")]
  101. [Nullable(true)]
  102. [DataLength(20)]
  103. public string UseCode
  104. {
  105. get { return useCode; }
  106. set { useCode = value; }
  107. }
  108. /// <summary>
  109. /// 协议或Alpha描述(用途描述)
  110. /// </summary>
  111. [Description("用途描述")]
  112. [Nullable(true)]
  113. [DataLength(100)]
  114. public string UseDesc
  115. {
  116. get { return useDesc; }
  117. set { useDesc = value; }
  118. }
  119. /// <summary>
  120. /// 是否特殊要求(0:交付标准;1:特殊要求;2:内控标准)
  121. /// </summary>
  122. [Description("是否特殊要求")]
  123. [Nullable(false)]
  124. [DataLength(1)]
  125. public string SpeclFl
  126. {
  127. get { return speclFl; }
  128. set { speclFl = value; }
  129. }
  130. /// <summary>
  131. /// 序号
  132. /// </summary>
  133. [Description("序号")]
  134. [Nullable(false)]
  135. [DataLength(22)]
  136. public decimal? IndexSeq
  137. {
  138. get { return indexSeq; }
  139. set { indexSeq = value; }
  140. }
  141. /// <summary>
  142. /// 试验压力(psi)(英制)
  143. /// </summary>
  144. [Description("试验压力(psi)(英制)")]
  145. [Nullable(true)]
  146. [DataLength(10)]
  147. public string PressureY
  148. {
  149. get { return pressureY; }
  150. set { pressureY = value; }
  151. }
  152. /// <summary>
  153. /// 试验压力(MPa)(公制)
  154. /// </summary>
  155. [Description("试验压力(MPa)(公制)")]
  156. [Nullable(true)]
  157. [DataLength(10)]
  158. public string Pressure
  159. {
  160. get { return pressure; }
  161. set { pressure = value; }
  162. }
  163. /// <summary>
  164. /// 试验压力(公式)
  165. /// </summary>
  166. [Description("试验压力(公式)")]
  167. [Nullable(true)]
  168. [DataLength(100)]
  169. public string Formula
  170. {
  171. get { return formula; }
  172. set { formula = value; }
  173. }
  174. /// <summary>
  175. /// 保压时间(S)
  176. /// </summary>
  177. [Description("保压时间(S)")]
  178. [Nullable(true)]
  179. [DataLength(10)]
  180. public string SaveTime
  181. {
  182. get { return saveTime; }
  183. set { saveTime = value; }
  184. }
  185. /// <summary>
  186. /// 取大值
  187. /// </summary>
  188. [Description("取大值")]
  189. [Nullable(true)]
  190. [DataLength(1)]
  191. public string GetMaxvalue
  192. {
  193. get { return getMaxvalue; }
  194. set { getMaxvalue = value; }
  195. }
  196. /// <summary>
  197. /// 取小值
  198. /// </summary>
  199. [Description("取小值")]
  200. [Nullable(true)]
  201. [DataLength(1)]
  202. public string GetMinvalue
  203. {
  204. get { return getMinvalue; }
  205. set { getMinvalue = value; }
  206. }
  207. /// <summary>
  208. /// 标准试验压力系数
  209. /// </summary>
  210. [Description("标准试验压力系数")]
  211. [Nullable(true)]
  212. [DataLength(22)]
  213. public decimal? RatioStd
  214. {
  215. get { return ratioStd; }
  216. set { ratioStd = value; }
  217. }
  218. /// <summary>
  219. /// 替代试验压力系数
  220. /// </summary>
  221. [Description("替代试验压力系数")]
  222. [Nullable(true)]
  223. [DataLength(22)]
  224. public decimal? RatioReplace
  225. {
  226. get { return ratioReplace; }
  227. set { ratioReplace = value; }
  228. }
  229. /// <summary>
  230. /// 最大试验压力
  231. /// </summary>
  232. [Description("最大试验压力")]
  233. [Nullable(true)]
  234. [DataLength(10)]
  235. public string MaxPress
  236. {
  237. get { return maxPress; }
  238. set { maxPress = value; }
  239. }
  240. }
  241. }