TSpecdevYlrq.java 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885
  1. package com.ruoyi.project.sems.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_specdev_ylrq
  10. *
  11. * @author ruoyi
  12. * @date 2021-06-30
  13. */
  14. public class TSpecdevYlrq extends BaseEntity
  15. {
  16. private static final long serialVersionUID = 1L;
  17. /** 唯一标识ID */
  18. private Long id;
  19. /** 装置名称 */
  20. @Excel(name = "装置")
  21. private String plantCode;
  22. /** 设备位号 */
  23. @Excel(name = "容器位号")
  24. private String devno;
  25. /** P&ID号 */
  26. @Excel(name = "P&ID号")
  27. private String pidNo;
  28. /** 设备名称 */
  29. @Excel(name = "容器名称")
  30. private String devname;
  31. /** 英文名称 */
  32. @Excel(name = "英文名称")
  33. private String devEnname;
  34. /** 状态 */
  35. @Excel(name = "状态", dictType = "spec_dev_status")
  36. private Long status;
  37. /** 安全阀 */
  38. @Excel(name = "安全阀")
  39. private String reliefValve;
  40. /** 使用证编号 */
  41. @Excel(name = "使用证号码")
  42. private String useno;
  43. /** 注册代码 */
  44. @Excel(name = "注册编号")
  45. private String regno;
  46. /** 出厂资料 */
  47. @Excel(name = "出厂资料")
  48. private String factoryInfo;
  49. /** 下次检验日期 */
  50. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  51. @Excel(name = "下次检验日期", width = 30, dateFormat = "yyyy-MM-dd")
  52. private Date nextWarnDate;
  53. /** 设备出厂编号 */
  54. @Excel(name = "设备出厂编号")
  55. private String factoryNo;
  56. /** 设计单位 */
  57. @Excel(name = "设计单位")
  58. private String designUnit;
  59. /** 制造单位 */
  60. @Excel(name = "制造单位")
  61. private String createUnit;
  62. /** 容器类别 */
  63. @Excel(name = "容器类别")
  64. private String vesselType;
  65. /** 用途代码 */
  66. @Excel(name = "用途代号")
  67. private String useCode;
  68. /** 压力等级 */
  69. @Excel(name = "压力等级代号")
  70. private String pressureGrade;
  71. /** 安全等级 */
  72. @Excel(name = "安全状况等级")
  73. private String safeClass;
  74. /** 提交日期 */
  75. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  76. @Excel(name = "投用日期", width = 30, dateFormat = "yyyy-MM-dd")
  77. private Date submitdate;
  78. /** 设计使用年限 */
  79. @Excel(name = "设计使用年限")
  80. private String desYear;
  81. /** 设计寿命到期 */
  82. @JsonFormat(pattern = "yyyy-MM" , timezone = "GMT+8")
  83. @Excel(name = "设计寿命到期", width = 30, dateFormat = "yyyy-MM-dd")
  84. private Date designDead;
  85. /** 定期检验日期 */
  86. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  87. @Excel(name = "最近检查时间", width = 30, dateFormat = "yyyy-MM-dd")
  88. private Date warnDate;
  89. @Excel(name = "检验状态")
  90. private String checkStatus;
  91. /** 单元 */
  92. //@Excel(name = "单元")
  93. private String unit;
  94. /** PM维修组 */
  95. //@Excel(name = "装置维修组")
  96. private String plantMaint;
  97. /** 工程师 */
  98. //@Excel(name = "装置维修工程师")
  99. private String engineer;
  100. /** 审核状态 */
  101. //@Excel(name = "审核状态", dictType = "spec_approve_status")
  102. private Long approveStatus;
  103. /** 国家 */
  104. //@Excel(name = "国家")
  105. private String nation;
  106. /** 外形尺寸 */
  107. //@Excel(name = "外形尺寸(直径*长(高)*厚(mm))")
  108. private String outSize;
  109. /** 材质 */
  110. //@Excel(name = "材料")
  111. private String material;
  112. /** 介质 */
  113. // @Excel(name = "介质")
  114. private String medium;
  115. /** 设计压力 */
  116. //@Excel(name = "设计压力(MPa)")
  117. private String desPressure;
  118. /** 操作压力 */
  119. //@Excel(name = "操作压力(MPa)")
  120. private String optPressure;
  121. /** 设计温度 */
  122. //@Excel(name = "设计温度(℃)")
  123. private String desTemp;
  124. /** 操作温度 */
  125. //@Excel(name = "操作温度(℃)")
  126. private String optTemp;
  127. /** 涉危化品 */
  128. //@Excel(name = "是否涉危化品")
  129. private String isDanger;
  130. /** 超过使用寿命 */
  131. //@Excel(name = "是否达到设计使用年限")
  132. private String isOverlife;
  133. /** 检验单位 */
  134. //@Excel(name = "检验单位")
  135. private String checkUnit;
  136. /** 报告编号 */
  137. //@Excel(name = "定期检验报告编号")
  138. private String reportNo;
  139. /** 年度检查日期 */
  140. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  141. // @Excel(name = "年度检查日期", width = 30, dateFormat = "yyyy-MM-dd")
  142. private Date yearWarnDate;
  143. /** 年度检查结论 */
  144. // @Excel(name = "年度检查结论")
  145. private String checkConclusion;
  146. /** 下次年度检查日期 */
  147. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  148. // @Excel(name = "下次年度检查日期", width = 30, dateFormat = "yyyy-MM-dd")
  149. private Date yearNextWarnDate;
  150. /** 年度检查报告编号 */
  151. // @Excel(name = "年度检查报告编号")
  152. private String yearReportNo;
  153. /** 备注 */
  154. @Excel(name = "备注")
  155. private String remarks;
  156. /** 状态 1 :正常 ;0:删除 */
  157. private Long delFlag;
  158. /** 创建人 */
  159. private Long createrCode;
  160. /** 创建时间 */
  161. private Date createdate;
  162. /** 修改人 */
  163. private Long updaterCode;
  164. /** 修改时间 */
  165. private Date updatedate;
  166. /** 部门编号 */
  167. //@Excel(name = "部门编号")
  168. private Long deptId;
  169. /** 检测周期 */
  170. //@Excel(name = "检测周期")
  171. private Long warnCycle;
  172. /** 预警标识 */
  173. //@Excel(name = "预警标识")
  174. private Long warnFlag;
  175. /** 重点设备 */
  176. //@Excel(name = "重点设备")
  177. private Long isKey;
  178. /** 最新申请时间 */
  179. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  180. //@Excel(name = "最新申请时间", width = 30, dateFormat = "yyyy-MM-dd")
  181. private Date approveTime;
  182. /** 状态修改时间 */
  183. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  184. //@Excel(name = "状态修改时间", width = 30, dateFormat = "yyyy-MM-dd")
  185. private Date changeTime;
  186. /** 部门名称 */
  187. //@Excel(name = "部门名称")
  188. private String deptName;
  189. /** 状态(0:改造,1:修改) */
  190. private Long hiType;
  191. private Long devId;
  192. private Long hiFlag;
  193. private String plantIds;
  194. private String unitIds;
  195. private String checkYear;
  196. private String fuzzy;
  197. public String getCheckStatus() {
  198. return checkStatus;
  199. }
  200. public void setCheckStatus(String checkStatus) {
  201. this.checkStatus = checkStatus;
  202. }
  203. public String getFuzzy() {
  204. return fuzzy;
  205. }
  206. public void setFuzzy(String fuzzy) {
  207. this.fuzzy = fuzzy;
  208. }
  209. public String getDevEnname() {
  210. return devEnname;
  211. }
  212. public void setDevEnname(String devEnname) {
  213. this.devEnname = devEnname;
  214. }
  215. public String getPidNo() {
  216. return pidNo;
  217. }
  218. public void setPidNo(String pidNo) {
  219. this.pidNo = pidNo;
  220. }
  221. public String getReliefValve() {
  222. return reliefValve;
  223. }
  224. public void setReliefValve(String reliefValve) {
  225. this.reliefValve = reliefValve;
  226. }
  227. public String getFactoryInfo() {
  228. return factoryInfo;
  229. }
  230. public void setFactoryInfo(String factoryInfo) {
  231. this.factoryInfo = factoryInfo;
  232. }
  233. public String getDesignUnit() {
  234. return designUnit;
  235. }
  236. public void setDesignUnit(String designUnit) {
  237. this.designUnit = designUnit;
  238. }
  239. public String getUseCode() {
  240. return useCode;
  241. }
  242. public void setUseCode(String useCode) {
  243. this.useCode = useCode;
  244. }
  245. public String getPressureGrade() {
  246. return pressureGrade;
  247. }
  248. public void setPressureGrade(String pressureGrade) {
  249. this.pressureGrade = pressureGrade;
  250. }
  251. public Date getDesignDead() {
  252. return designDead;
  253. }
  254. public void setDesignDead(Date designDead) {
  255. this.designDead = designDead;
  256. }
  257. public Long getHiFlag() {
  258. return hiFlag;
  259. }
  260. public void setHiFlag(Long hiFlag) {
  261. this.hiFlag = hiFlag;
  262. }
  263. private Long isRepeat;
  264. public Long getIsRepeat() {
  265. return isRepeat;
  266. }
  267. public void setIsRepeat(Long isRepeat) {
  268. this.isRepeat = isRepeat;
  269. }
  270. public Long getHiType() {
  271. return hiType;
  272. }
  273. public void setHiType(Long hiType) {
  274. this.hiType = hiType;
  275. }
  276. public Long getDevId() {
  277. return devId;
  278. }
  279. public void setDevId(Long devId) {
  280. this.devId = devId;
  281. }
  282. public String getDesYear() {
  283. return desYear;
  284. }
  285. public void setDesYear(String desYear) {
  286. this.desYear = desYear;
  287. }
  288. public Date getYearWarnDate() {
  289. return yearWarnDate;
  290. }
  291. public void setYearWarnDate(Date yearWarnDate) {
  292. this.yearWarnDate = yearWarnDate;
  293. }
  294. public String getCheckConclusion() {
  295. return checkConclusion;
  296. }
  297. public void setCheckConclusion(String checkConclusion) {
  298. this.checkConclusion = checkConclusion;
  299. }
  300. public Date getYearNextWarnDate() {
  301. return yearNextWarnDate;
  302. }
  303. public void setYearNextWarnDate(Date yearNextWarnDate) {
  304. this.yearNextWarnDate = yearNextWarnDate;
  305. }
  306. public String getYearReportNo() {
  307. return yearReportNo;
  308. }
  309. public void setYearReportNo(String yearReportNo) {
  310. this.yearReportNo = yearReportNo;
  311. }
  312. public String getDeptName() {
  313. return deptName;
  314. }
  315. public void setDeptName(String deptName) {
  316. this.deptName = deptName;
  317. }
  318. public void setId(Long id)
  319. {
  320. this.id = id;
  321. }
  322. public Long getId()
  323. {
  324. return id;
  325. }
  326. public void setPlantCode(String plantCode)
  327. {
  328. this.plantCode = plantCode;
  329. }
  330. public String getPlantCode()
  331. {
  332. return plantCode;
  333. }
  334. public void setUnit(String unit)
  335. {
  336. this.unit = unit;
  337. }
  338. public String getUnit()
  339. {
  340. return unit;
  341. }
  342. public void setDevname(String devname)
  343. {
  344. this.devname = devname;
  345. }
  346. public String getDevname()
  347. {
  348. return devname;
  349. }
  350. public void setDevno(String devno)
  351. {
  352. this.devno = devno;
  353. }
  354. public String getDevno()
  355. {
  356. return devno;
  357. }
  358. public void setSubmitdate(Date submitdate)
  359. {
  360. this.submitdate = submitdate;
  361. }
  362. public Date getSubmitdate()
  363. {
  364. return submitdate;
  365. }
  366. public void setStatus(Long status)
  367. {
  368. this.status = status;
  369. }
  370. public Long getStatus()
  371. {
  372. return status;
  373. }
  374. public void setDelFlag(Long delFlag)
  375. {
  376. this.delFlag = delFlag;
  377. }
  378. public Long getDelFlag()
  379. {
  380. return delFlag;
  381. }
  382. public void setCreaterCode(Long createrCode)
  383. {
  384. this.createrCode = createrCode;
  385. }
  386. public Long getCreaterCode()
  387. {
  388. return createrCode;
  389. }
  390. public void setCreatedate(Date createdate)
  391. {
  392. this.createdate = createdate;
  393. }
  394. public Date getCreatedate()
  395. {
  396. return createdate;
  397. }
  398. public void setUpdaterCode(Long updaterCode)
  399. {
  400. this.updaterCode = updaterCode;
  401. }
  402. public Long getUpdaterCode()
  403. {
  404. return updaterCode;
  405. }
  406. public void setUpdatedate(Date updatedate)
  407. {
  408. this.updatedate = updatedate;
  409. }
  410. public Date getUpdatedate()
  411. {
  412. return updatedate;
  413. }
  414. public void setDeptId(Long deptId)
  415. {
  416. this.deptId = deptId;
  417. }
  418. public Long getDeptId()
  419. {
  420. return deptId;
  421. }
  422. public void setRemarks(String remarks)
  423. {
  424. this.remarks = remarks;
  425. }
  426. public String getRemarks()
  427. {
  428. return remarks;
  429. }
  430. public void setApproveStatus(Long approveStatus)
  431. {
  432. this.approveStatus = approveStatus;
  433. }
  434. public Long getApproveStatus()
  435. {
  436. return approveStatus;
  437. }
  438. public void setRegno(String regno)
  439. {
  440. this.regno = regno;
  441. }
  442. public String getRegno()
  443. {
  444. return regno;
  445. }
  446. public void setUseno(String useno)
  447. {
  448. this.useno = useno;
  449. }
  450. public String getUseno()
  451. {
  452. return useno;
  453. }
  454. public void setWarnDate(Date warnDate)
  455. {
  456. this.warnDate = warnDate;
  457. }
  458. public Date getWarnDate()
  459. {
  460. return warnDate;
  461. }
  462. public void setWarnCycle(Long warnCycle)
  463. {
  464. this.warnCycle = warnCycle;
  465. }
  466. public Long getWarnCycle()
  467. {
  468. return warnCycle;
  469. }
  470. public void setNextWarnDate(Date nextWarnDate)
  471. {
  472. this.nextWarnDate = nextWarnDate;
  473. }
  474. public Date getNextWarnDate()
  475. {
  476. return nextWarnDate;
  477. }
  478. public void setWarnFlag(Long warnFlag)
  479. {
  480. this.warnFlag = warnFlag;
  481. }
  482. public Long getWarnFlag()
  483. {
  484. return warnFlag;
  485. }
  486. public void setPlantMaint(String plantMaint)
  487. {
  488. this.plantMaint = plantMaint;
  489. }
  490. public String getPlantMaint()
  491. {
  492. return plantMaint;
  493. }
  494. public void setEngineer(String engineer)
  495. {
  496. this.engineer = engineer;
  497. }
  498. public String getEngineer()
  499. {
  500. return engineer;
  501. }
  502. public void setVesselType(String vesselType)
  503. {
  504. this.vesselType = vesselType;
  505. }
  506. public String getVesselType()
  507. {
  508. return vesselType;
  509. }
  510. public void setIsKey(Long isKey)
  511. {
  512. this.isKey = isKey;
  513. }
  514. public Long getIsKey()
  515. {
  516. return isKey;
  517. }
  518. public void setCreateUnit(String createUnit)
  519. {
  520. this.createUnit = createUnit;
  521. }
  522. public String getCreateUnit()
  523. {
  524. return createUnit;
  525. }
  526. public void setNation(String nation)
  527. {
  528. this.nation = nation;
  529. }
  530. public String getNation()
  531. {
  532. return nation;
  533. }
  534. public void setOutSize(String outSize)
  535. {
  536. this.outSize = outSize;
  537. }
  538. public String getOutSize()
  539. {
  540. return outSize;
  541. }
  542. public void setMaterial(String material)
  543. {
  544. this.material = material;
  545. }
  546. public String getMaterial()
  547. {
  548. return material;
  549. }
  550. public void setMedium(String medium)
  551. {
  552. this.medium = medium;
  553. }
  554. public String getMedium()
  555. {
  556. return medium;
  557. }
  558. public void setDesPressure(String desPressure)
  559. {
  560. this.desPressure = desPressure;
  561. }
  562. public String getDesPressure()
  563. {
  564. return desPressure;
  565. }
  566. public void setDesTemp(String desTemp)
  567. {
  568. this.desTemp = desTemp;
  569. }
  570. public String getDesTemp()
  571. {
  572. return desTemp;
  573. }
  574. public void setOptPressure(String optPressure)
  575. {
  576. this.optPressure = optPressure;
  577. }
  578. public String getOptPressure()
  579. {
  580. return optPressure;
  581. }
  582. public void setOptTemp(String optTemp)
  583. {
  584. this.optTemp = optTemp;
  585. }
  586. public String getOptTemp()
  587. {
  588. return optTemp;
  589. }
  590. public void setCheckUnit(String checkUnit)
  591. {
  592. this.checkUnit = checkUnit;
  593. }
  594. public String getCheckUnit()
  595. {
  596. return checkUnit;
  597. }
  598. public void setReportNo(String reportNo)
  599. {
  600. this.reportNo = reportNo;
  601. }
  602. public String getReportNo()
  603. {
  604. return reportNo;
  605. }
  606. public String getIsDanger() {
  607. return isDanger;
  608. }
  609. public void setIsDanger(String isDanger) {
  610. this.isDanger = isDanger;
  611. }
  612. public String getIsOverlife() {
  613. return isOverlife;
  614. }
  615. public void setIsOverlife(String isOverlife) {
  616. this.isOverlife = isOverlife;
  617. }
  618. public void setSafeClass(String safeClass)
  619. {
  620. this.safeClass = safeClass;
  621. }
  622. public String getSafeClass()
  623. {
  624. return safeClass;
  625. }
  626. public void setApproveTime(Date approveTime)
  627. {
  628. this.approveTime = approveTime;
  629. }
  630. public Date getApproveTime()
  631. {
  632. return approveTime;
  633. }
  634. public void setChangeTime(Date changeTime)
  635. {
  636. this.changeTime = changeTime;
  637. }
  638. public Date getChangeTime()
  639. {
  640. return changeTime;
  641. }
  642. public String getPlantIds() {
  643. return plantIds;
  644. }
  645. public void setPlantIds(String plantIds) {
  646. this.plantIds = plantIds;
  647. }
  648. public String getUnitIds() {
  649. return unitIds;
  650. }
  651. public void setUnitIds(String unitIds) {
  652. this.unitIds = unitIds;
  653. }
  654. public String getCheckYear() {
  655. return checkYear;
  656. }
  657. public void setCheckYear(String checkYear) {
  658. this.checkYear = checkYear;
  659. }
  660. public String getFactoryNo() {
  661. return factoryNo;
  662. }
  663. public void setFactoryNo(String factoryNo) {
  664. this.factoryNo = factoryNo;
  665. }
  666. @Override
  667. public String toString() {
  668. return new ToStringBuilder(this, ToStringStyle.MULTI_LINE_STYLE)
  669. .append("id", getId())
  670. .append("plantCode", getPlantCode())
  671. .append("unit", getUnit())
  672. .append("devname", getDevname())
  673. .append("devno", getDevno())
  674. .append("submitdate", getSubmitdate())
  675. .append("status", getStatus())
  676. .append("delFlag", getDelFlag())
  677. .append("createrCode", getCreaterCode())
  678. .append("createdate", getCreatedate())
  679. .append("updaterCode", getUpdaterCode())
  680. .append("updatedate", getUpdatedate())
  681. .append("deptId", getDeptId())
  682. .append("remarks", getRemarks())
  683. .append("approveStatus", getApproveStatus())
  684. .append("regno", getRegno())
  685. .append("useno", getUseno())
  686. .append("warnDate", getWarnDate())
  687. .append("warnCycle", getWarnCycle())
  688. .append("nextWarnDate", getNextWarnDate())
  689. .append("warnFlag", getWarnFlag())
  690. .append("plantMaint", getPlantMaint())
  691. .append("engineer", getEngineer())
  692. .append("vesselType", getVesselType())
  693. .append("isKey", getIsKey())
  694. .append("createUnit", getCreateUnit())
  695. .append("nation", getNation())
  696. .append("outSize", getOutSize())
  697. .append("material", getMaterial())
  698. .append("medium", getMedium())
  699. .append("desPressure", getDesPressure())
  700. .append("desTemp", getDesTemp())
  701. .append("optPressure", getOptPressure())
  702. .append("optTemp", getOptTemp())
  703. .append("checkUnit", getCheckUnit())
  704. .append("reportNo", getReportNo())
  705. .append("isDanger", getIsDanger())
  706. .append("isOverlife", getIsOverlife())
  707. .append("safeClass", getSafeClass())
  708. .append("approveTime", getApproveTime())
  709. .append("changeTime", getChangeTime())
  710. .toString();
  711. }
  712. }