TPssrOverhaulValve.java 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486
  1. package com.ruoyi.project.pssr.domain;
  2. import com.fasterxml.jackson.annotation.JsonFormat;
  3. import com.ruoyi.framework.aspectj.lang.annotation.Excel;
  4. import com.ruoyi.framework.web.domain.BaseEntity;
  5. import org.apache.commons.lang3.builder.ToStringBuilder;
  6. import org.apache.commons.lang3.builder.ToStringStyle;
  7. import java.util.Date;
  8. import java.util.List;
  9. /**
  10. * 检修项目-阀门对象 t_pssr_overhaul_valve
  11. *
  12. * @author ssy
  13. * @date 2024-09-23
  14. */
  15. public class TPssrOverhaulValve extends BaseEntity
  16. {
  17. private static final long serialVersionUID = 1L;
  18. /** 唯一标识ID */
  19. private Long id;
  20. /** 从表id */
  21. @Excel(name = "从表id")
  22. private Long subId;
  23. /** 审批id */
  24. @Excel(name = "审批id")
  25. private Long approveId;
  26. /** 升级改型更换/更换/维修 */
  27. @Excel(name = "升级改型更换/更换/维修")
  28. private String changeType;
  29. /** 连接形式 */
  30. @Excel(name = "连接形式")
  31. private String connectionForm;
  32. /** ITP */
  33. @Excel(name = "ITP")
  34. private String itp;
  35. /** 施工队 */
  36. @Excel(name = "施工队")
  37. private String constructionTeam;
  38. /** 项目 */
  39. @Excel(name = "项目")
  40. private String item;
  41. /** 装置 */
  42. @Excel(name = "装置")
  43. private String plant;
  44. /** 阀门位置 */
  45. @Excel(name = "阀门位置")
  46. private String valvePosition;
  47. /** 阀门信息描述 */
  48. @Excel(name = "阀门信息描述")
  49. private String vavleInfoDes;
  50. /** 类型 */
  51. @Excel(name = "类型")
  52. private String type;
  53. /** 尺寸 */
  54. @Excel(name = "尺寸")
  55. private String pipeSize;
  56. /** 等级 */
  57. @Excel(name = "等级")
  58. private String valveClass;
  59. /** 需求数量 */
  60. @Excel(name = "需求数量")
  61. private String quantityRequired;
  62. /** 缺陷和常见故障 */
  63. @Excel(name = "缺陷和常见故障")
  64. private String faultCommon;
  65. /** 介质 */
  66. @Excel(name = "介质")
  67. private String medium;
  68. /** 图号 */
  69. @Excel(name = "图号")
  70. private String pidNo;
  71. /** 完成日期 */
  72. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  73. @Excel(name = "完成日期", width = 30, dateFormat = "yyyy-MM-dd")
  74. private Date doneDate;
  75. /** 确认人 */
  76. @Excel(name = "确认人")
  77. private String confirmerName;
  78. private String identifyingPerson;
  79. /** 删除状态 */
  80. private Long delFlag;
  81. /** 创建人 */
  82. @Excel(name = "创建人")
  83. private String createrCode;
  84. /** 创建时间 */
  85. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  86. @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
  87. private Date createdate;
  88. /** 修改人 */
  89. @Excel(name = "修改人")
  90. private String updaterCode;
  91. /** 修改时间 */
  92. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  93. @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
  94. private Date updatedate;
  95. /** 部门编号 */
  96. @Excel(name = "部门编号")
  97. private Long deptId;
  98. private String deptName;
  99. public String getDeptName() {
  100. return deptName;
  101. }
  102. public void setDeptName(String deptName) {
  103. this.deptName = deptName;
  104. }
  105. /** 备注 */
  106. @Excel(name = "备注")
  107. private String remarks;
  108. /** 审批状态 */
  109. @Excel(name = "审批状态")
  110. private Long approveStatus;
  111. private String confirm1Name;
  112. private String confirm2Name;
  113. private List<Long> fileIds;
  114. private List<TPssrFile> fileList;
  115. public List<TPssrFile> getFileList() {
  116. return fileList;
  117. }
  118. public void setFileList(List<TPssrFile> fileList) {
  119. this.fileList = fileList;
  120. }
  121. public List<Long> getFileIds() {
  122. return fileIds;
  123. }
  124. public void setFileIds(List<Long> fileIds) {
  125. this.fileIds = fileIds;
  126. }
  127. public String getConfirm1Name() {
  128. return confirm1Name;
  129. }
  130. public void setConfirm1Name(String confirm1Name) {
  131. this.confirm1Name = confirm1Name;
  132. }
  133. public String getConfirm2Name() {
  134. return confirm2Name;
  135. }
  136. public void setConfirm2Name(String confirm2Name) {
  137. this.confirm2Name = confirm2Name;
  138. }
  139. private Long ids[];
  140. public Long[] getIds() {
  141. return ids;
  142. }
  143. public void setIds(Long[] ids) {
  144. this.ids = ids;
  145. }
  146. public String getConfirmerName() {
  147. return confirmerName;
  148. }
  149. public void setConfirmedName(String confirmerName) {
  150. this.confirmerName = confirmerName;
  151. }
  152. public void setId(Long id)
  153. {
  154. this.id = id;
  155. }
  156. public Long getId()
  157. {
  158. return id;
  159. }
  160. public void setSubId(Long subId)
  161. {
  162. this.subId = subId;
  163. }
  164. public Long getSubId()
  165. {
  166. return subId;
  167. }
  168. public void setApproveId(Long approveId)
  169. {
  170. this.approveId = approveId;
  171. }
  172. public Long getApproveId()
  173. {
  174. return approveId;
  175. }
  176. public void setChangeType(String changeType)
  177. {
  178. this.changeType = changeType;
  179. }
  180. public String getChangeType()
  181. {
  182. return changeType;
  183. }
  184. public void setConnectionForm(String connectionForm)
  185. {
  186. this.connectionForm = connectionForm;
  187. }
  188. public String getConnectionForm()
  189. {
  190. return connectionForm;
  191. }
  192. public void setItp(String itp)
  193. {
  194. this.itp = itp;
  195. }
  196. public String getItp()
  197. {
  198. return itp;
  199. }
  200. public void setConstructionTeam(String constructionTeam)
  201. {
  202. this.constructionTeam = constructionTeam;
  203. }
  204. public String getConstructionTeam()
  205. {
  206. return constructionTeam;
  207. }
  208. public void setItem(String item)
  209. {
  210. this.item = item;
  211. }
  212. public String getItem()
  213. {
  214. return item;
  215. }
  216. public void setPlant(String plant)
  217. {
  218. this.plant = plant;
  219. }
  220. public String getPlant()
  221. {
  222. return plant;
  223. }
  224. public void setValvePosition(String valvePosition)
  225. {
  226. this.valvePosition = valvePosition;
  227. }
  228. public String getValvePosition()
  229. {
  230. return valvePosition;
  231. }
  232. public void setVavleInfoDes(String vavleInfoDes)
  233. {
  234. this.vavleInfoDes = vavleInfoDes;
  235. }
  236. public String getVavleInfoDes()
  237. {
  238. return vavleInfoDes;
  239. }
  240. public void setType(String type)
  241. {
  242. this.type = type;
  243. }
  244. public String getType()
  245. {
  246. return type;
  247. }
  248. public void setPipeSize(String pipeSize)
  249. {
  250. this.pipeSize = pipeSize;
  251. }
  252. public String getPipeSize()
  253. {
  254. return pipeSize;
  255. }
  256. public void setValveClass(String valveClass)
  257. {
  258. this.valveClass = valveClass;
  259. }
  260. public String getValveClass()
  261. {
  262. return valveClass;
  263. }
  264. public void setQuantityRequired(String quantityRequired)
  265. {
  266. this.quantityRequired = quantityRequired;
  267. }
  268. public String getQuantityRequired()
  269. {
  270. return quantityRequired;
  271. }
  272. public void setFaultCommon(String faultCommon)
  273. {
  274. this.faultCommon = faultCommon;
  275. }
  276. public String getFaultCommon()
  277. {
  278. return faultCommon;
  279. }
  280. public void setMedium(String medium)
  281. {
  282. this.medium = medium;
  283. }
  284. public String getMedium()
  285. {
  286. return medium;
  287. }
  288. public void setPidNo(String pidNo)
  289. {
  290. this.pidNo = pidNo;
  291. }
  292. public String getPidNo()
  293. {
  294. return pidNo;
  295. }
  296. public void setDoneDate(Date doneDate)
  297. {
  298. this.doneDate = doneDate;
  299. }
  300. public Date getDoneDate()
  301. {
  302. return doneDate;
  303. }
  304. public void setIdentifyingPerson(String identifyingPerson)
  305. {
  306. this.identifyingPerson = identifyingPerson;
  307. }
  308. public String getIdentifyingPerson()
  309. {
  310. return identifyingPerson;
  311. }
  312. public void setDelFlag(Long delFlag)
  313. {
  314. this.delFlag = delFlag;
  315. }
  316. public Long getDelFlag()
  317. {
  318. return delFlag;
  319. }
  320. public void setCreaterCode(String createrCode)
  321. {
  322. this.createrCode = createrCode;
  323. }
  324. public String getCreaterCode()
  325. {
  326. return createrCode;
  327. }
  328. public void setCreatedate(Date createdate)
  329. {
  330. this.createdate = createdate;
  331. }
  332. public Date getCreatedate()
  333. {
  334. return createdate;
  335. }
  336. public void setUpdaterCode(String updaterCode)
  337. {
  338. this.updaterCode = updaterCode;
  339. }
  340. public String getUpdaterCode()
  341. {
  342. return updaterCode;
  343. }
  344. public void setUpdatedate(Date updatedate)
  345. {
  346. this.updatedate = updatedate;
  347. }
  348. public Date getUpdatedate()
  349. {
  350. return updatedate;
  351. }
  352. public void setDeptId(Long deptId)
  353. {
  354. this.deptId = deptId;
  355. }
  356. public Long getDeptId()
  357. {
  358. return deptId;
  359. }
  360. public void setRemarks(String remarks)
  361. {
  362. this.remarks = remarks;
  363. }
  364. public String getRemarks()
  365. {
  366. return remarks;
  367. }
  368. public void setApproveStatus(Long approveStatus)
  369. {
  370. this.approveStatus = approveStatus;
  371. }
  372. public Long getApproveStatus()
  373. {
  374. return approveStatus;
  375. }
  376. @Override
  377. public String toString() {
  378. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  379. .append("id", getId())
  380. .append("subId", getSubId())
  381. .append("approveId", getApproveId())
  382. .append("changeType", getChangeType())
  383. .append("connectionForm", getConnectionForm())
  384. .append("itp", getItp())
  385. .append("constructionTeam", getConstructionTeam())
  386. .append("item", getItem())
  387. .append("plant", getPlant())
  388. .append("valvePosition", getValvePosition())
  389. .append("vavleInfoDes", getVavleInfoDes())
  390. .append("type", getType())
  391. .append("pipeSize", getPipeSize())
  392. .append("valveClass", getValveClass())
  393. .append("quantityRequired", getQuantityRequired())
  394. .append("faultCommon", getFaultCommon())
  395. .append("medium", getMedium())
  396. .append("pidNo", getPidNo())
  397. .append("doneDate", getDoneDate())
  398. .append("identifyingPerson", getIdentifyingPerson())
  399. .append("delFlag", getDelFlag())
  400. .append("createrCode", getCreaterCode())
  401. .append("createdate", getCreatedate())
  402. .append("updaterCode", getUpdaterCode())
  403. .append("updatedate", getUpdatedate())
  404. .append("deptId", getDeptId())
  405. .append("remarks", getRemarks())
  406. .append("approveStatus", getApproveStatus())
  407. .toString();
  408. }
  409. }