ComBaseWellMonthPlineEntity.cs 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583
  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.Qcm.model
  8. {
  9. /// <summary>
  10. /// 数据库表COM_BASE_WELL_MONTH_PLINE所对应的实体类(生成工具:代码生成工具3.0)
  11. /// 作者:LAPTOP-I2IGVKJC 时间:2023-07-28
  12. /// </summary>
  13. public class ComBaseWellMonthPlineEntity
  14. {
  15. /// <summary>
  16. /// 产线代码
  17. /// </summary>
  18. private string plineCode = "";
  19. /// <summary>
  20. /// 产线描述
  21. /// </summary>
  22. private string plineName = "";
  23. /// <summary>
  24. /// 年份(4位)
  25. /// </summary>
  26. private string year = null;
  27. /// <summary>
  28. /// 1月产能值
  29. /// </summary>
  30. private string month1 = null;
  31. /// <summary>
  32. /// 2月产能值
  33. /// </summary>
  34. private string month2 = null;
  35. /// <summary>
  36. /// 3月产能值
  37. /// </summary>
  38. private string month3 = null;
  39. /// <summary>
  40. /// 4月产能值
  41. /// </summary>
  42. private string month4 = null;
  43. /// <summary>
  44. /// 5月产能值
  45. /// </summary>
  46. private string month5 = null;
  47. /// <summary>
  48. /// 6月产能值
  49. /// </summary>
  50. private string month6 = null;
  51. /// <summary>
  52. /// 7月产能值
  53. /// </summary>
  54. private string month7 = null;
  55. /// <summary>
  56. /// 8月产能值
  57. /// </summary>
  58. private string month8 = null;
  59. /// <summary>
  60. /// 9月产能值
  61. /// </summary>
  62. private string month9 = null;
  63. /// <summary>
  64. /// 10月产能值
  65. /// </summary>
  66. private string month10 = null;
  67. /// <summary>
  68. /// 11月产能值
  69. /// </summary>
  70. private string month11 = null;
  71. /// <summary>
  72. /// 12月产能值
  73. /// </summary>
  74. private string month12 = null;
  75. /// <summary>
  76. /// 创建人
  77. /// </summary>
  78. private string createName = "";
  79. /// <summary>
  80. /// 创建时间
  81. /// </summary>
  82. private string createTime = "";
  83. /// <summary>
  84. /// 修改人
  85. /// </summary>
  86. private string updateName = "";
  87. /// <summary>
  88. /// 修改时间
  89. /// </summary>
  90. private string updateTime = "";
  91. /// <summary>
  92. /// 删除人
  93. /// </summary>
  94. private string deleteName = "";
  95. /// <summary>
  96. /// 删除时间
  97. /// </summary>
  98. private string deleteTime = "";
  99. /// <summary>
  100. /// 有效标志(1:有效,0:无效)
  101. /// </summary>
  102. private string validflag = "";
  103. /// <summary>
  104. /// 备注
  105. /// </summary>
  106. private string memo = "";
  107. /// <summary>
  108. /// 1月停机时间
  109. /// </summary>
  110. private string haltHour1 = null;
  111. /// <summary>
  112. /// 2月停机时间
  113. /// </summary>
  114. private string haltHour2 = null;
  115. /// <summary>
  116. /// 3月停机时间
  117. /// </summary>
  118. private string haltHour3 = null;
  119. /// <summary>
  120. /// 4月停机时间
  121. /// </summary>
  122. private string haltHour4 = null;
  123. /// <summary>
  124. /// 5月停机时间
  125. /// </summary>
  126. private string haltHour5 = null;
  127. /// <summary>
  128. /// 6月停机时间
  129. /// </summary>
  130. private string haltHour6 = null;
  131. /// <summary>
  132. /// 7月停机时间
  133. /// </summary>
  134. private string haltHour7 = null;
  135. /// <summary>
  136. /// 8月停机时间
  137. /// </summary>
  138. private string haltHour8 = null;
  139. /// <summary>
  140. /// 9月停机时间
  141. /// </summary>
  142. private string haltHour9 = null;
  143. /// <summary>
  144. /// 10月停机时间
  145. /// </summary>
  146. private string haltHour10 = null;
  147. /// <summary>
  148. /// 11月停机时间
  149. /// </summary>
  150. private string haltHour11 = null;
  151. /// <summary>
  152. /// 12月停机时间
  153. /// </summary>
  154. private string haltHour12 = null;
  155. /// <summary>
  156. /// 产线代码
  157. /// </summary>
  158. [Description("产线代码")]
  159. [Nullable(false)]
  160. [DataLength(4)]
  161. public string PlineCode
  162. {
  163. get { return plineCode; }
  164. set { plineCode = value; }
  165. }
  166. /// <summary>
  167. /// 产线描述
  168. /// </summary>
  169. [Description("产线描述")]
  170. [Nullable(false)]
  171. [DataLength(100)]
  172. public string PlineName
  173. {
  174. get { return plineName; }
  175. set { plineName = value; }
  176. }
  177. /// <summary>
  178. /// 年份(4位)
  179. /// </summary>
  180. [Description("年份(4位)")]
  181. [Nullable(false)]
  182. [DataLength(4)]
  183. public string Year
  184. {
  185. get { return year; }
  186. set { year = value; }
  187. }
  188. /// <summary>
  189. /// 1月产能值
  190. /// </summary>
  191. [Description("1月产能值")]
  192. [Nullable(true)]
  193. [DataLength(22)]
  194. public string Month1
  195. {
  196. get { return month1; }
  197. set { month1 = value; }
  198. }
  199. /// <summary>
  200. /// 2月产能值
  201. /// </summary>
  202. [Description("2月产能值")]
  203. [Nullable(true)]
  204. [DataLength(22)]
  205. public string Month2
  206. {
  207. get { return month2; }
  208. set { month2 = value; }
  209. }
  210. /// <summary>
  211. /// 3月产能值
  212. /// </summary>
  213. [Description("3月产能值")]
  214. [Nullable(true)]
  215. [DataLength(22)]
  216. public string Month3
  217. {
  218. get { return month3; }
  219. set { month3 = value; }
  220. }
  221. /// <summary>
  222. /// 4月产能值
  223. /// </summary>
  224. [Description("4月产能值")]
  225. [Nullable(true)]
  226. [DataLength(22)]
  227. public string Month4
  228. {
  229. get { return month4; }
  230. set { month4 = value; }
  231. }
  232. /// <summary>
  233. /// 5月产能值
  234. /// </summary>
  235. [Description("5月产能值")]
  236. [Nullable(true)]
  237. [DataLength(22)]
  238. public string Month5
  239. {
  240. get { return month5; }
  241. set { month5 = value; }
  242. }
  243. /// <summary>
  244. /// 6月产能值
  245. /// </summary>
  246. [Description("6月产能值")]
  247. [Nullable(true)]
  248. [DataLength(22)]
  249. public string Month6
  250. {
  251. get { return month6; }
  252. set { month6 = value; }
  253. }
  254. /// <summary>
  255. /// 7月产能值
  256. /// </summary>
  257. [Description("7月产能值")]
  258. [Nullable(true)]
  259. [DataLength(22)]
  260. public string Month7
  261. {
  262. get { return month7; }
  263. set { month7 = value; }
  264. }
  265. /// <summary>
  266. /// 8月产能值
  267. /// </summary>
  268. [Description("8月产能值")]
  269. [Nullable(true)]
  270. [DataLength(22)]
  271. public string Month8
  272. {
  273. get { return month8; }
  274. set { month8 = value; }
  275. }
  276. /// <summary>
  277. /// 9月产能值
  278. /// </summary>
  279. [Description("9月产能值")]
  280. [Nullable(true)]
  281. [DataLength(22)]
  282. public string Month9
  283. {
  284. get { return month9; }
  285. set { month9 = value; }
  286. }
  287. /// <summary>
  288. /// 10月产能值
  289. /// </summary>
  290. [Description("10月产能值")]
  291. [Nullable(true)]
  292. [DataLength(22)]
  293. public string Month10
  294. {
  295. get { return month10; }
  296. set { month10 = value; }
  297. }
  298. /// <summary>
  299. /// 11月产能值
  300. /// </summary>
  301. [Description("11月产能值")]
  302. [Nullable(true)]
  303. [DataLength(22)]
  304. public string Month11
  305. {
  306. get { return month11; }
  307. set { month11 = value; }
  308. }
  309. /// <summary>
  310. /// 12月产能值
  311. /// </summary>
  312. [Description("12月产能值")]
  313. [Nullable(true)]
  314. [DataLength(22)]
  315. public string Month12
  316. {
  317. get { return month12; }
  318. set { month12 = value; }
  319. }
  320. /// <summary>
  321. /// 创建人
  322. /// </summary>
  323. [Description("创建人")]
  324. [Nullable(true)]
  325. [DataLength(20)]
  326. public string CreateName
  327. {
  328. get { return createName; }
  329. set { createName = value; }
  330. }
  331. /// <summary>
  332. /// 创建时间
  333. /// </summary>
  334. [Description("创建时间")]
  335. [Nullable(true)]
  336. public string CreateTime
  337. {
  338. get { return createTime; }
  339. set { createTime = value; }
  340. }
  341. /// <summary>
  342. /// 修改人
  343. /// </summary>
  344. [Description("修改人")]
  345. [Nullable(true)]
  346. [DataLength(20)]
  347. public string UpdateName
  348. {
  349. get { return updateName; }
  350. set { updateName = value; }
  351. }
  352. /// <summary>
  353. /// 修改时间
  354. /// </summary>
  355. [Description("修改时间")]
  356. [Nullable(true)]
  357. public string UpdateTime
  358. {
  359. get { return updateTime; }
  360. set { updateTime = value; }
  361. }
  362. /// <summary>
  363. /// 删除人
  364. /// </summary>
  365. [Description("删除人")]
  366. [Nullable(true)]
  367. [DataLength(20)]
  368. public string DeleteName
  369. {
  370. get { return deleteName; }
  371. set { deleteName = value; }
  372. }
  373. /// <summary>
  374. /// 删除时间
  375. /// </summary>
  376. [Description("删除时间")]
  377. [Nullable(true)]
  378. public string DeleteTime
  379. {
  380. get { return deleteTime; }
  381. set { deleteTime = value; }
  382. }
  383. /// <summary>
  384. /// 有效标志(1:有效,0:无效)
  385. /// </summary>
  386. [Description("有效标志(1:有效,0:无效)")]
  387. [Nullable(false)]
  388. [DataLength(1)]
  389. public string Validflag
  390. {
  391. get { return validflag; }
  392. set { validflag = value; }
  393. }
  394. /// <summary>
  395. /// 备注
  396. /// </summary>
  397. [Description("备注")]
  398. [Nullable(true)]
  399. [DataLength(500)]
  400. public string Memo
  401. {
  402. get { return memo; }
  403. set { memo = value; }
  404. }
  405. private string yearOld;
  406. public string YearOld
  407. {
  408. get { return yearOld; }
  409. set { yearOld = value; }
  410. }
  411. /// <summary>
  412. /// 1月停机时间
  413. /// </summary>
  414. [Description("1月停机时间")]
  415. [Nullable(true)]
  416. [DataLength(22)]
  417. public string HaltHour1
  418. {
  419. get { return haltHour1; }
  420. set { haltHour1 = value; }
  421. }
  422. /// <summary>
  423. /// 2月停机时间
  424. /// </summary>
  425. [Description("2月停机时间")]
  426. [Nullable(true)]
  427. [DataLength(22)]
  428. public string HaltHour2
  429. {
  430. get { return haltHour2; }
  431. set { haltHour2 = value; }
  432. }
  433. /// <summary>
  434. /// 3月停机时间
  435. /// </summary>
  436. [Description("3月停机时间")]
  437. [Nullable(true)]
  438. [DataLength(22)]
  439. public string HaltHour3
  440. {
  441. get { return haltHour3; }
  442. set { haltHour3 = value; }
  443. }
  444. /// <summary>
  445. /// 4月停机时间
  446. /// </summary>
  447. [Description("4月停机时间")]
  448. [Nullable(true)]
  449. [DataLength(22)]
  450. public string HaltHour4
  451. {
  452. get { return haltHour4; }
  453. set { haltHour4 = value; }
  454. }
  455. /// <summary>
  456. /// 5月停机时间
  457. /// </summary>
  458. [Description("5月停机时间")]
  459. [Nullable(true)]
  460. [DataLength(22)]
  461. public string HaltHour5
  462. {
  463. get { return haltHour5; }
  464. set { haltHour5 = value; }
  465. }
  466. /// <summary>
  467. /// 6月停机时间
  468. /// </summary>
  469. [Description("6月停机时间")]
  470. [Nullable(true)]
  471. [DataLength(22)]
  472. public string HaltHour6
  473. {
  474. get { return haltHour6; }
  475. set { haltHour6 = value; }
  476. }
  477. /// <summary>
  478. /// 7月停机时间
  479. /// </summary>
  480. [Description("7月停机时间")]
  481. [Nullable(true)]
  482. [DataLength(22)]
  483. public string HaltHour7
  484. {
  485. get { return haltHour7; }
  486. set { haltHour7 = value; }
  487. }
  488. /// <summary>
  489. /// 8月停机时间
  490. /// </summary>
  491. [Description("8月停机时间")]
  492. [Nullable(true)]
  493. [DataLength(22)]
  494. public string HaltHour8
  495. {
  496. get { return haltHour8; }
  497. set { haltHour8 = value; }
  498. }
  499. /// <summary>
  500. /// 9月停机时间
  501. /// </summary>
  502. [Description("9月停机时间")]
  503. [Nullable(true)]
  504. [DataLength(22)]
  505. public string HaltHour9
  506. {
  507. get { return haltHour9; }
  508. set { haltHour9 = value; }
  509. }
  510. /// <summary>
  511. /// 10月停机时间
  512. /// </summary>
  513. [Description("10月停机时间")]
  514. [Nullable(true)]
  515. [DataLength(22)]
  516. public string HaltHour10
  517. {
  518. get { return haltHour10; }
  519. set { haltHour10 = value; }
  520. }
  521. /// <summary>
  522. /// 11月停机时间
  523. /// </summary>
  524. [Description("11月停机时间")]
  525. [Nullable(true)]
  526. [DataLength(22)]
  527. public string HaltHour11
  528. {
  529. get { return haltHour11; }
  530. set { haltHour11 = value; }
  531. }
  532. /// <summary>
  533. /// 12月停机时间
  534. /// </summary>
  535. [Description("12月停机时间")]
  536. [Nullable(true)]
  537. [DataLength(22)]
  538. public string HaltHour12
  539. {
  540. get { return haltHour12; }
  541. set { haltHour12 = value; }
  542. }
  543. }
  544. }