ThreadInspectSelfCheck.cs 8.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Linq;
  4. using System.Text;
  5. using System.ComponentModel;
  6. namespace com.steering.mes.mcp.entity
  7. {
  8. /// <summary>
  9. /// 接箍螺纹检验自检记录实体类
  10. /// </summary>
  11. [Serializable]
  12. public class ThreadInspectSelfCheck
  13. {
  14. /// <summary>
  15. /// 实绩编号
  16. /// </summary>
  17. private object resultNo;
  18. /// <summary>
  19. /// 产线代码
  20. /// </summary>
  21. private object plineCode;
  22. /// <summary>
  23. /// 作业工单号
  24. /// </summary>
  25. private object zyPlanId;
  26. /// <summary>
  27. /// 接箍编号
  28. /// </summary>
  29. private object couplingNo;
  30. /// <summary>
  31. /// 锥度
  32. /// </summary>
  33. private object taper;
  34. /// <summary>
  35. /// 螺距
  36. /// </summary>
  37. private object lead;
  38. /// <summary>
  39. /// 齿高
  40. /// </summary>
  41. private object height;
  42. /// <summary>
  43. /// 紧密距
  44. /// </summary>
  45. private object pdiameterOvality;
  46. /// <summary>
  47. /// L4/断扣
  48. /// </summary>
  49. private object brokenthread;
  50. /// <summary>
  51. /// AL
  52. /// </summary>
  53. private object al;
  54. /// <summary>
  55. /// 尾扣
  56. /// </summary>
  57. private object runOut;
  58. /// <summary>
  59. /// 倒角
  60. /// </summary>
  61. private object chamfer;
  62. /// <summary>
  63. /// 判定
  64. /// </summary>
  65. private object result;
  66. /// <summary>
  67. /// 牙型
  68. /// </summary>
  69. private object threadform;
  70. private string woId;
  71. public string WoId
  72. {
  73. get { return woId; }
  74. set { woId = value; }
  75. }
  76. private string ifAllOutWork;
  77. public string IfAllOutWork
  78. {
  79. get { return ifAllOutWork; }
  80. set { ifAllOutWork = value; }
  81. }
  82. private string offNum;
  83. public string OffNum
  84. {
  85. get { return offNum; }
  86. set { offNum = value; }
  87. }
  88. public ThreadInspectSelfCheck()
  89. {
  90. resultNo = "";
  91. plineCode = "";
  92. zyPlanId = "";
  93. couplingNo = "";
  94. taper = "";
  95. lead = "";
  96. height = "";
  97. pdiameterOvality = "";
  98. brokenthread = "";
  99. al = "";
  100. runOut = "";
  101. chamfer = "";
  102. result = "";
  103. threadform = "";
  104. }
  105. /// <summary>
  106. /// 实绩编号
  107. /// </summary>
  108. [Description("实绩编号")]
  109. public object ResultNo
  110. {
  111. get { return resultNo; }
  112. set
  113. {
  114. if (value == null)
  115. {
  116. resultNo = DBNull.Value;
  117. }
  118. else
  119. {
  120. resultNo = value;
  121. }
  122. }
  123. }
  124. /// <summary>
  125. /// 产线代码
  126. /// </summary>
  127. [Description("产线代码")]
  128. public object PlineCode
  129. {
  130. get { return plineCode; }
  131. set
  132. {
  133. if (value == null)
  134. {
  135. plineCode = DBNull.Value;
  136. }
  137. else
  138. {
  139. plineCode = value;
  140. }
  141. }
  142. }
  143. /// <summary>
  144. /// 作业工单号
  145. /// </summary>
  146. [Description("作业工单号")]
  147. public object ZyPlanId
  148. {
  149. get { return zyPlanId; }
  150. set
  151. {
  152. if (value == null)
  153. {
  154. zyPlanId = DBNull.Value;
  155. }
  156. else
  157. {
  158. zyPlanId = value;
  159. }
  160. }
  161. }
  162. /// <summary>
  163. /// 接箍编号
  164. /// </summary>
  165. [Description("接箍编号")]
  166. public object CouplingNo
  167. {
  168. get { return couplingNo; }
  169. set
  170. {
  171. if (value == null)
  172. {
  173. couplingNo = DBNull.Value;
  174. }
  175. else
  176. {
  177. couplingNo = value;
  178. }
  179. }
  180. }
  181. /// <summary>
  182. /// 锥度
  183. /// </summary>
  184. [Description("锥度")]
  185. public object Taper
  186. {
  187. get { return taper; }
  188. set
  189. {
  190. if (value == null)
  191. {
  192. taper = DBNull.Value;
  193. }
  194. else
  195. {
  196. taper = value;
  197. }
  198. }
  199. }
  200. /// <summary>
  201. /// 螺距
  202. /// </summary>
  203. [Description("螺距")]
  204. public object Lead
  205. {
  206. get { return lead; }
  207. set
  208. {
  209. if (value == null)
  210. {
  211. lead = DBNull.Value;
  212. }
  213. else
  214. {
  215. lead = value;
  216. }
  217. }
  218. }
  219. /// <summary>
  220. /// 齿高
  221. /// </summary>
  222. [Description("齿高")]
  223. public object Height
  224. {
  225. get { return height; }
  226. set
  227. {
  228. if (value == null)
  229. {
  230. height = DBNull.Value;
  231. }
  232. else
  233. {
  234. height = value;
  235. }
  236. }
  237. }
  238. /// <summary>
  239. /// 紧密距
  240. /// </summary>
  241. [Description("紧密距")]
  242. public object PdiameterOvality
  243. {
  244. get { return pdiameterOvality; }
  245. set
  246. {
  247. if (value == null)
  248. {
  249. pdiameterOvality = DBNull.Value;
  250. }
  251. else
  252. {
  253. pdiameterOvality = value;
  254. }
  255. }
  256. }
  257. /// <summary>
  258. /// L4/断扣
  259. /// </summary>
  260. [Description("L4/断扣")]
  261. public object Brokenthread
  262. {
  263. get { return brokenthread; }
  264. set
  265. {
  266. if (value == null)
  267. {
  268. brokenthread = DBNull.Value;
  269. }
  270. else
  271. {
  272. brokenthread = value;
  273. }
  274. }
  275. }
  276. /// <summary>
  277. /// AL
  278. /// </summary>
  279. [Description("AL")]
  280. public object Al
  281. {
  282. get { return al; }
  283. set
  284. {
  285. if (value == null)
  286. {
  287. al = DBNull.Value;
  288. }
  289. else
  290. {
  291. al = value;
  292. }
  293. }
  294. }
  295. /// <summary>
  296. /// 尾扣
  297. /// </summary>
  298. [Description("尾扣")]
  299. public object RunOut
  300. {
  301. get { return runOut; }
  302. set
  303. {
  304. if (value == null)
  305. {
  306. runOut = DBNull.Value;
  307. }
  308. else
  309. {
  310. runOut = value;
  311. }
  312. }
  313. }
  314. /// <summary>
  315. /// 倒角
  316. /// </summary>
  317. [Description("倒角")]
  318. public object Chamfer
  319. {
  320. get { return chamfer; }
  321. set
  322. {
  323. if (value == null)
  324. {
  325. chamfer = DBNull.Value;
  326. }
  327. else
  328. {
  329. chamfer = value;
  330. }
  331. }
  332. }
  333. /// <summary>
  334. /// 判定
  335. /// </summary>
  336. [Description("判定")]
  337. public object Result
  338. {
  339. get { return result; }
  340. set
  341. {
  342. if (value == null)
  343. {
  344. result = DBNull.Value;
  345. }
  346. else
  347. {
  348. result = value;
  349. }
  350. }
  351. }
  352. /// <summary>
  353. /// 牙型
  354. /// </summary>
  355. [Description("牙型")]
  356. public object Threadform
  357. {
  358. get { return threadform; }
  359. set
  360. {
  361. if (value == null)
  362. {
  363. threadform = DBNull.Value;
  364. }
  365. else
  366. {
  367. threadform = value;
  368. }
  369. }
  370. }
  371. }
  372. }