TShiftLog.java 14 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644
  1. package com.ruoyi.project.shiftmgr.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.common.annotation.Excel;
  4. import com.ruoyi.common.core.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.util.Date;
  8. /**
  9. * 轮班日志对象 t_shift_log
  10. *
  11. * @author ruoyi
  12. * @date 2023-08-17
  13. */
  14. public class TShiftLog extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** id */
  18. private Long id;
  19. /** 倒班班组 */
  20. @Excel(name = "倒班班组")
  21. private String shiftTeam;
  22. /** 接班时间 */
  23. @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
  24. @Excel(name = "接班时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
  25. private Date takeOverTime;
  26. /** 交班时间 */
  27. @JsonFormat(pattern = "yyyy-MM-dd HH:mm")
  28. @Excel(name = "交班时间", width = 30, dateFormat = "yyyy-MM-dd HH:mm")
  29. private Date giveOverTime;
  30. /** 接班时工艺状况 */
  31. @Excel(name = "接班时工艺状况")
  32. private String tocp;
  33. /** 安全、环保、健康及5S事项班前简报 */
  34. @Excel(name = "安全、环保、健康及5S事项班前简报")
  35. private String ehs5sBriefing;
  36. /** C4分离和氧化吸收 */
  37. @Excel(name = "C4分离和氧化吸收")
  38. private String soa;
  39. /** 汽提和加氢 */
  40. @Excel(name = "汽提和加氢")
  41. private String sh;
  42. /** BDO环化 */
  43. @Excel(name = "BDO环化")
  44. private String bdoc;
  45. /** THF精馏 */
  46. @Excel(name = "THF精馏")
  47. private String thfd;
  48. /** PTHF单元 */
  49. @Excel(name = "PTHF单元")
  50. private String pthfUnit;
  51. /** DBP精馏 */
  52. @Excel(name = "DBP精馏")
  53. private String dbpd;
  54. /** TRU和蒸汽系统 */
  55. @Excel(name = "TRU和蒸汽系统")
  56. private String truss;
  57. /** PolyTHF Complex公用工程系统 */
  58. @Excel(name = "PolyTHF Complex公用工程系统")
  59. private String pthfCus;
  60. /** BIP公用工程系统 */
  61. @Excel(name = "BIP公用工程系统")
  62. private String bipus;
  63. /** 液化气和氢气 */
  64. @Excel(name = "液化气和氢气")
  65. private String lpgH2;
  66. /** TRU-CO */
  67. @Excel(name = "TRU-CO")
  68. private String q125601;
  69. /** TRU-非甲烷总烃 */
  70. @Excel(name = "TRU-非甲烷总烃")
  71. private String q125602;
  72. /** 厂界-THF */
  73. @Excel(name = "厂界-THF")
  74. private String q312018Q1;
  75. /** 厂界-MeOH */
  76. @Excel(name = "厂界-MeOH")
  77. private String q312018Q2;
  78. /** 厂界-MeAC */
  79. @Excel(name = "厂界-MeAC")
  80. private String q312018Q3;
  81. /** 厂界-Xylene */
  82. @Excel(name = "厂界-Xylene")
  83. private String q312018Q4;
  84. /** 雨水总管-TOC */
  85. @Excel(name = "雨水总管-TOC")
  86. private String q312000;
  87. /** 雨水总管-PH */
  88. @Excel(name = "雨水总管-PH")
  89. private String q312001;
  90. /** 异常状况描述 */
  91. @Excel(name = "异常状况描述")
  92. private String epdOther;
  93. /** 其他 */
  94. @Excel(name = "其他")
  95. private String ehsOther;
  96. /** 产品质量和分析报告 */
  97. @Excel(name = "产品质量和分析报告")
  98. private String qar;
  99. /** 电气及仪表 */
  100. @Excel(name = "电气及仪表")
  101. private String maEi;
  102. /** 机械 */
  103. @Excel(name = "机械")
  104. private String maMechanical;
  105. /** 第三方联系 */
  106. @Excel(name = "第三方联系")
  107. private String thirdPartyCommunication;
  108. /** 电气及仪表 */
  109. @Excel(name = "电气及仪表")
  110. private String fampEi;
  111. /** 机械 */
  112. @Excel(name = "机械")
  113. private String fampMechanical;
  114. /** 接班班组需继续的操作 */
  115. @Excel(name = "接班班组需继续的操作")
  116. private String faop;
  117. /** 评述 */
  118. @Excel(name = "评述")
  119. private String comments;
  120. /** 交班班组组长 */
  121. @Excel(name = "交班班组组长")
  122. private String hoShiftSup;
  123. /** 接班班组组长 */
  124. @Excel(name = "接班班组组长")
  125. private String toShiftSup;
  126. /** 删除标识 */
  127. private Integer delFlag;
  128. /** 状态 */
  129. @Excel(name = "状态")
  130. private Integer status;
  131. /** 创建人 */
  132. @Excel(name = "创建人")
  133. private String createrCode;
  134. /** 创建日期 */
  135. @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
  136. @Excel(name = "创建日期", width = 30, dateFormat = "yyyy-MM-dd")
  137. private Date createdate;
  138. /** 更新人 */
  139. @Excel(name = "更新人")
  140. private String updaterCode;
  141. /** 更新日期 */
  142. @JsonFormat(pattern = "yyyy-MM-dd",timezone = "GMT+8")
  143. @Excel(name = "更新日期", width = 30, dateFormat = "yyyy-MM-dd")
  144. private Date updatedate;
  145. /** 部门编号 */
  146. @Excel(name = "部门编号")
  147. private Long deptId;
  148. /** 备注 */
  149. @Excel(name = "备注")
  150. private String remarks;
  151. public void setId(Long id)
  152. {
  153. this.id = id;
  154. }
  155. public Long getId()
  156. {
  157. return id;
  158. }
  159. public void setShiftTeam(String shiftTeam)
  160. {
  161. this.shiftTeam = shiftTeam;
  162. }
  163. public String getShiftTeam()
  164. {
  165. return shiftTeam;
  166. }
  167. public void setTakeOverTime(Date takeOverTime)
  168. {
  169. this.takeOverTime = takeOverTime;
  170. }
  171. public Date getTakeOverTime()
  172. {
  173. return takeOverTime;
  174. }
  175. public Date getGiveOverTime() {
  176. return giveOverTime;
  177. }
  178. public void setGiveOverTime(Date giveOverTime) {
  179. this.giveOverTime = giveOverTime;
  180. }
  181. public void setTocp(String tocp)
  182. {
  183. this.tocp = tocp;
  184. }
  185. public String getTocp()
  186. {
  187. return tocp;
  188. }
  189. public void setEhs5sBriefing(String ehs5sBriefing)
  190. {
  191. this.ehs5sBriefing = ehs5sBriefing;
  192. }
  193. public String getEhs5sBriefing()
  194. {
  195. return ehs5sBriefing;
  196. }
  197. public void setSoa(String soa)
  198. {
  199. this.soa = soa;
  200. }
  201. public String getSoa()
  202. {
  203. return soa;
  204. }
  205. public void setSh(String sh)
  206. {
  207. this.sh = sh;
  208. }
  209. public String getSh()
  210. {
  211. return sh;
  212. }
  213. public void setBdoc(String bdoc)
  214. {
  215. this.bdoc = bdoc;
  216. }
  217. public String getBdoc()
  218. {
  219. return bdoc;
  220. }
  221. public void setThfd(String thfd)
  222. {
  223. this.thfd = thfd;
  224. }
  225. public String getThfd()
  226. {
  227. return thfd;
  228. }
  229. public void setPthfUnit(String pthfUnit)
  230. {
  231. this.pthfUnit = pthfUnit;
  232. }
  233. public String getPthfUnit()
  234. {
  235. return pthfUnit;
  236. }
  237. public void setDbpd(String dbpd)
  238. {
  239. this.dbpd = dbpd;
  240. }
  241. public String getDbpd()
  242. {
  243. return dbpd;
  244. }
  245. public void setTruss(String truss)
  246. {
  247. this.truss = truss;
  248. }
  249. public String getTruss()
  250. {
  251. return truss;
  252. }
  253. public void setPthfCus(String pthfCus)
  254. {
  255. this.pthfCus = pthfCus;
  256. }
  257. public String getPthfCus()
  258. {
  259. return pthfCus;
  260. }
  261. public void setBipus(String bipus)
  262. {
  263. this.bipus = bipus;
  264. }
  265. public String getBipus()
  266. {
  267. return bipus;
  268. }
  269. public void setLpgH2(String lpgH2)
  270. {
  271. this.lpgH2 = lpgH2;
  272. }
  273. public String getLpgH2()
  274. {
  275. return lpgH2;
  276. }
  277. public void setQ125601(String q125601)
  278. {
  279. this.q125601 = q125601;
  280. }
  281. public String getQ125601()
  282. {
  283. return q125601;
  284. }
  285. public void setQ125602(String q125602)
  286. {
  287. this.q125602 = q125602;
  288. }
  289. public String getQ125602()
  290. {
  291. return q125602;
  292. }
  293. public void setQ312018Q1(String q312018Q1)
  294. {
  295. this.q312018Q1 = q312018Q1;
  296. }
  297. public String getQ312018Q1()
  298. {
  299. return q312018Q1;
  300. }
  301. public void setQ312018Q2(String q312018Q2)
  302. {
  303. this.q312018Q2 = q312018Q2;
  304. }
  305. public String getQ312018Q2()
  306. {
  307. return q312018Q2;
  308. }
  309. public void setQ312018Q3(String q312018Q3)
  310. {
  311. this.q312018Q3 = q312018Q3;
  312. }
  313. public String getQ312018Q3()
  314. {
  315. return q312018Q3;
  316. }
  317. public void setQ312018Q4(String q312018Q4)
  318. {
  319. this.q312018Q4 = q312018Q4;
  320. }
  321. public String getQ312018Q4()
  322. {
  323. return q312018Q4;
  324. }
  325. public void setQ312000(String q312000)
  326. {
  327. this.q312000 = q312000;
  328. }
  329. public String getQ312000()
  330. {
  331. return q312000;
  332. }
  333. public void setQ312001(String q312001)
  334. {
  335. this.q312001 = q312001;
  336. }
  337. public String getQ312001()
  338. {
  339. return q312001;
  340. }
  341. public void setEpdOther(String epdOther)
  342. {
  343. this.epdOther = epdOther;
  344. }
  345. public String getEpdOther()
  346. {
  347. return epdOther;
  348. }
  349. public void setEhsOther(String ehsOther)
  350. {
  351. this.ehsOther = ehsOther;
  352. }
  353. public String getEhsOther()
  354. {
  355. return ehsOther;
  356. }
  357. public void setQar(String qar)
  358. {
  359. this.qar = qar;
  360. }
  361. public String getQar()
  362. {
  363. return qar;
  364. }
  365. public void setMaEi(String maEi)
  366. {
  367. this.maEi = maEi;
  368. }
  369. public String getMaEi()
  370. {
  371. return maEi;
  372. }
  373. public void setMaMechanical(String maMechanical)
  374. {
  375. this.maMechanical = maMechanical;
  376. }
  377. public String getMaMechanical()
  378. {
  379. return maMechanical;
  380. }
  381. public void setThirdPartyCommunication(String thirdPartyCommunication)
  382. {
  383. this.thirdPartyCommunication = thirdPartyCommunication;
  384. }
  385. public String getThirdPartyCommunication()
  386. {
  387. return thirdPartyCommunication;
  388. }
  389. public void setFampEi(String fampEi)
  390. {
  391. this.fampEi = fampEi;
  392. }
  393. public String getFampEi()
  394. {
  395. return fampEi;
  396. }
  397. public void setFampMechanical(String fampMechanical)
  398. {
  399. this.fampMechanical = fampMechanical;
  400. }
  401. public String getFampMechanical()
  402. {
  403. return fampMechanical;
  404. }
  405. public void setFaop(String faop)
  406. {
  407. this.faop = faop;
  408. }
  409. public String getFaop()
  410. {
  411. return faop;
  412. }
  413. public void setComments(String comments)
  414. {
  415. this.comments = comments;
  416. }
  417. public String getComments()
  418. {
  419. return comments;
  420. }
  421. public void setHoShiftSup(String hoShiftSup)
  422. {
  423. this.hoShiftSup = hoShiftSup;
  424. }
  425. public String getHoShiftSup()
  426. {
  427. return hoShiftSup;
  428. }
  429. public void setToShiftSup(String toShiftSup)
  430. {
  431. this.toShiftSup = toShiftSup;
  432. }
  433. public String getToShiftSup()
  434. {
  435. return toShiftSup;
  436. }
  437. public void setDelFlag(Integer delFlag)
  438. {
  439. this.delFlag = delFlag;
  440. }
  441. public Integer getDelFlag()
  442. {
  443. return delFlag;
  444. }
  445. public void setStatus(Integer status)
  446. {
  447. this.status = status;
  448. }
  449. public Integer getStatus()
  450. {
  451. return status;
  452. }
  453. public void setCreaterCode(String createrCode)
  454. {
  455. this.createrCode = createrCode;
  456. }
  457. public String getCreaterCode()
  458. {
  459. return createrCode;
  460. }
  461. public void setCreatedate(Date createdate)
  462. {
  463. this.createdate = createdate;
  464. }
  465. public Date getCreatedate()
  466. {
  467. return createdate;
  468. }
  469. public void setUpdaterCode(String updaterCode)
  470. {
  471. this.updaterCode = updaterCode;
  472. }
  473. public String getUpdaterCode()
  474. {
  475. return updaterCode;
  476. }
  477. public void setUpdatedate(Date updatedate)
  478. {
  479. this.updatedate = updatedate;
  480. }
  481. public Date getUpdatedate()
  482. {
  483. return updatedate;
  484. }
  485. public void setDeptId(Long deptId)
  486. {
  487. this.deptId = deptId;
  488. }
  489. public Long getDeptId()
  490. {
  491. return deptId;
  492. }
  493. public void setRemarks(String remarks)
  494. {
  495. this.remarks = remarks;
  496. }
  497. public String getRemarks()
  498. {
  499. return remarks;
  500. }
  501. @Override
  502. public String toString() {
  503. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  504. .append("id", getId())
  505. .append("shiftTeam", getShiftTeam())
  506. .append("takeOverTime", getTakeOverTime())
  507. .append("tocp", getTocp())
  508. .append("ehs5sBriefing", getEhs5sBriefing())
  509. .append("soa", getSoa())
  510. .append("sh", getSh())
  511. .append("bdoc", getBdoc())
  512. .append("thfd", getThfd())
  513. .append("pthfUnit", getPthfUnit())
  514. .append("dbpd", getDbpd())
  515. .append("truss", getTruss())
  516. .append("pthfCus", getPthfCus())
  517. .append("bipus", getBipus())
  518. .append("lpgH2", getLpgH2())
  519. .append("q125601", getQ125601())
  520. .append("q125602", getQ125602())
  521. .append("q312018Q1", getQ312018Q1())
  522. .append("q312018Q2", getQ312018Q2())
  523. .append("q312018Q3", getQ312018Q3())
  524. .append("q312018Q4", getQ312018Q4())
  525. .append("q312000", getQ312000())
  526. .append("q312001", getQ312001())
  527. .append("epdOther", getEpdOther())
  528. .append("ehsOther", getEhsOther())
  529. .append("qar", getQar())
  530. .append("maEi", getMaEi())
  531. .append("maMechanical", getMaMechanical())
  532. .append("thirdPartyCommunication", getThirdPartyCommunication())
  533. .append("fampEi", getFampEi())
  534. .append("fampMechanical", getFampMechanical())
  535. .append("faop", getFaop())
  536. .append("comments", getComments())
  537. .append("hoShiftSup", getHoShiftSup())
  538. .append("toShiftSup", getToShiftSup())
  539. .append("delFlag", getDelFlag())
  540. .append("status", getStatus())
  541. .append("createrCode", getCreaterCode())
  542. .append("createdate", getCreatedate())
  543. .append("updaterCode", getUpdaterCode())
  544. .append("updatedate", getUpdatedate())
  545. .append("deptId", getDeptId())
  546. .append("remarks", getRemarks())
  547. .toString();
  548. }
  549. }