BuyGpCheckResultDEntity.cs 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289
  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.LgResMgt.Mcms.entity
  8. {
  9. /// <summary>
  10. /// 数据库表BUY_GP_CHECK_RESULT_D所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:朱少波 时间:2021-01-13
  12. /// </summary>
  13. public class BuyGpCheckResultDEntity
  14. {
  15. /// <summary>
  16. /// 检查记录流水号
  17. /// </summary>
  18. private string checkNo = "";
  19. /// <summary>
  20. /// 直径min
  21. /// </summary>
  22. private string dimaterMin = "";
  23. /// <summary>
  24. /// 直径max
  25. /// </summary>
  26. private string dimaterMax = "";
  27. /// <summary>
  28. /// 每米弯曲度
  29. /// </summary>
  30. private string curvaturePer = "";
  31. /// <summary>
  32. /// 全长弯曲度
  33. /// </summary>
  34. private string curvatureTotal = "";
  35. /// <summary>
  36. /// 长度
  37. /// </summary>
  38. private string length = "";
  39. /// <summary>
  40. /// 切斜
  41. /// </summary>
  42. private string cutSquare = "";
  43. /// <summary>
  44. /// 表面质量
  45. /// </summary>
  46. private string surfaceQuality = "";
  47. /// <summary>
  48. /// 标识
  49. /// </summary>
  50. private string identification = "";
  51. /// <summary>
  52. /// 备注
  53. /// </summary>
  54. private string memo = "";
  55. /// <summary>
  56. /// 椭圆度(含扁平区)
  57. /// </summary>
  58. private string ellipticity="";
  59. /// <summary>
  60. /// 椭圆度(含扁平区)
  61. /// </summary>
  62. private string Noellipticity = "";
  63. /// <summary>
  64. /// 检查序号
  65. /// </summary>
  66. private decimal? checkSeq = null;
  67. /// <summary>
  68. /// 端部圆心100mm平面内高低差
  69. /// </summary>
  70. private string altitude = null;
  71. /// <summary>
  72. /// 是否S弯
  73. /// </summary>
  74. private string isSbend = null;
  75. /// <summary>
  76. /// 端面是否平整
  77. /// </summary>
  78. private string isSmooth = null;
  79. /// <summary>
  80. /// 检查记录流水号
  81. /// </summary>
  82. [Description("端面是否平整")]
  83. [Nullable(false)]
  84. [DataLength(20)]
  85. public string IsSmooth
  86. {
  87. get { return isSmooth; }
  88. set { isSmooth = value; }
  89. }
  90. /// <summary>
  91. /// 检查记录流水号
  92. /// </summary>
  93. [Description("是否S弯")]
  94. [Nullable(false)]
  95. [DataLength(20)]
  96. public string IsSbend
  97. {
  98. get { return isSbend; }
  99. set { isSbend = value; }
  100. }
  101. /// <summary>
  102. /// 检查记录流水号
  103. /// </summary>
  104. [Description("端部圆心100mm平面内高低差")]
  105. [Nullable(false)]
  106. [DataLength(20)]
  107. public string Altitude
  108. {
  109. get { return altitude; }
  110. set { altitude = value; }
  111. }
  112. /// <summary>
  113. /// 检查记录流水号
  114. /// </summary>
  115. [Description("检查记录流水号")]
  116. [Nullable(false)]
  117. [DataLength(20)]
  118. public string CheckNo
  119. {
  120. get { return checkNo; }
  121. set { checkNo = value; }
  122. }
  123. /// <summary>
  124. /// 直径min
  125. /// </summary>
  126. [Description("直径min")]
  127. [Nullable(true)]
  128. [DataLength(20)]
  129. public string DimaterMin
  130. {
  131. get { return dimaterMin; }
  132. set { dimaterMin = value; }
  133. }
  134. /// <summary>
  135. /// 直径max
  136. /// </summary>
  137. [Description("直径max")]
  138. [Nullable(true)]
  139. [DataLength(20)]
  140. public string DimaterMax
  141. {
  142. get { return dimaterMax; }
  143. set { dimaterMax = value; }
  144. }
  145. /// <summary>
  146. /// 每米弯曲度
  147. /// </summary>
  148. [Description("每米弯曲度")]
  149. [Nullable(true)]
  150. [DataLength(20)]
  151. public string CurvaturePer
  152. {
  153. get { return curvaturePer; }
  154. set { curvaturePer = value; }
  155. }
  156. /// <summary>
  157. /// 全长弯曲度
  158. /// </summary>
  159. [Description("全长弯曲度")]
  160. [Nullable(true)]
  161. [DataLength(20)]
  162. public string CurvatureTotal
  163. {
  164. get { return curvatureTotal; }
  165. set { curvatureTotal = value; }
  166. }
  167. /// <summary>
  168. /// 长度
  169. /// </summary>
  170. [Description("长度")]
  171. [Nullable(true)]
  172. [DataLength(20)]
  173. public string Length
  174. {
  175. get { return length; }
  176. set { length = value; }
  177. }
  178. /// <summary>
  179. /// 切斜
  180. /// </summary>
  181. [Description("切斜")]
  182. [Nullable(true)]
  183. [DataLength(20)]
  184. public string CutSquare
  185. {
  186. get { return cutSquare; }
  187. set { cutSquare = value; }
  188. }
  189. /// <summary>
  190. /// 表面质量
  191. /// </summary>
  192. [Description("表面质量")]
  193. [Nullable(true)]
  194. [DataLength(100)]
  195. public string SurfaceQuality
  196. {
  197. get { return surfaceQuality; }
  198. set { surfaceQuality = value; }
  199. }
  200. /// <summary>
  201. /// 标识
  202. /// </summary>
  203. [Description("标识")]
  204. [Nullable(true)]
  205. [DataLength(100)]
  206. public string Identification
  207. {
  208. get { return identification; }
  209. set { identification = value; }
  210. }
  211. /// <summary>
  212. /// 备注
  213. /// </summary>
  214. [Description("备注")]
  215. [Nullable(true)]
  216. [DataLength(1000)]
  217. public string Memo
  218. {
  219. get { return memo; }
  220. set { memo = value; }
  221. }
  222. /// <summary>
  223. /// 检查序号
  224. /// </summary>
  225. [Description("检查序号")]
  226. [Nullable(false)]
  227. [DataLength(22)]
  228. public decimal? CheckSeq
  229. {
  230. get { return checkSeq; }
  231. set { checkSeq = value; }
  232. }
  233. /// <summary>
  234. /// 椭圆度(含扁平区)
  235. /// </summary>
  236. [Description("椭圆度(含扁平区)")]
  237. [Nullable(true)]
  238. [DataLength(20)]
  239. public string Ellipticity
  240. {
  241. get
  242. {
  243. return ellipticity;
  244. }
  245. set
  246. {
  247. ellipticity = value;
  248. }
  249. }
  250. /// <summary>
  251. /// 椭圆度(不含扁平区)
  252. /// </summary>
  253. [Description("椭圆度(不含扁平区)")]
  254. [Nullable(true)]
  255. [DataLength(20)]
  256. public string NoEllipticity
  257. {
  258. get
  259. {
  260. return Noellipticity;
  261. }
  262. set
  263. {
  264. Noellipticity = value;
  265. }
  266. }
  267. }
  268. }