TPssrInstrumentCalibration.java 9.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432
  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_instrument_calibration
  11. *
  12. * @author ssy
  13. * @date 2024-09-23
  14. */
  15. public class TPssrInstrumentCalibration 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 unit;
  29. /** 流量计位号 */
  30. @Excel(name = "流量计位号")
  31. private String devNo;
  32. /** 外观检查 */
  33. @Excel(name = "外观检查")
  34. private String visualInspection;
  35. /** 安装检查 */
  36. @Excel(name = "安装检查")
  37. private String installationInspection;
  38. /** 功能检查 */
  39. @Excel(name = "功能检查")
  40. private String functionalCheck;
  41. /** 仪表检查人 */
  42. @Excel(name = "仪表检查人")
  43. private String meterChecker;
  44. /** 工艺确认人 */
  45. @Excel(name = "工艺确认人")
  46. private String processValidator;
  47. /** 检查时间 */
  48. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  49. @Excel(name = "检查时间", width = 30, dateFormat = "yyyy-MM-dd")
  50. private Date confirmationDate;
  51. /** 删除状态 */
  52. private Long delFlag;
  53. /** 创建人 */
  54. @Excel(name = "创建人")
  55. private String createrCode;
  56. /** 创建时间 */
  57. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  58. @Excel(name = "创建时间", width = 30, dateFormat = "yyyy-MM-dd")
  59. private Date createdate;
  60. /** 修改人 */
  61. @Excel(name = "修改人")
  62. private String updaterCode;
  63. /** 修改时间 */
  64. @JsonFormat(pattern = "yyyy-MM-dd" , timezone = "GMT+8")
  65. @Excel(name = "修改时间", width = 30, dateFormat = "yyyy-MM-dd")
  66. private Date updatedate;
  67. /** 部门编号 */
  68. @Excel(name = "部门编号")
  69. private Long deptId;
  70. private String deptName;
  71. public String getDeptName() {
  72. return deptName;
  73. }
  74. public void setDeptName(String deptName) {
  75. this.deptName = deptName;
  76. }
  77. /** 备注 */
  78. @Excel(name = "备注")
  79. private String remarks;
  80. /** 审批状态 */
  81. @Excel(name = "审批状态")
  82. private Long approveStatus;
  83. private String confirm1Name;
  84. private String confirm2Name;
  85. private List<Long> fileIds;
  86. private List<TPssrFile> fileList;
  87. private String reason;
  88. private Long fileNum;
  89. public Long getFileNum() {
  90. return fileNum;
  91. }
  92. public void setFileNum(Long fileNum) {
  93. this.fileNum = fileNum;
  94. }
  95. private String flowCheck;
  96. private String fileCheck;
  97. private String devType;
  98. public String getFlowCheck() {
  99. return flowCheck;
  100. }
  101. public void setFlowCheck(String flowCheck) {
  102. this.flowCheck = flowCheck;
  103. }
  104. public String getFileCheck() {
  105. return fileCheck;
  106. }
  107. public void setFileCheck(String fileCheck) {
  108. this.fileCheck = fileCheck;
  109. }
  110. public String getDevType() {
  111. return devType;
  112. }
  113. public void setDevType(String devType) {
  114. this.devType = devType;
  115. }
  116. public String getReason() {
  117. return reason;
  118. }
  119. public void setReason(String reason) {
  120. this.reason = reason;
  121. }
  122. public List<TPssrFile> getFileList() {
  123. return fileList;
  124. }
  125. public void setFileList(List<TPssrFile> fileList) {
  126. this.fileList = fileList;
  127. }
  128. public List<Long> getFileIds() {
  129. return fileIds;
  130. }
  131. public void setFileIds(List<Long> fileIds) {
  132. this.fileIds = fileIds;
  133. }
  134. public String getConfirm1Name() {
  135. return confirm1Name;
  136. }
  137. public void setConfirm1Name(String confirm1Name) {
  138. this.confirm1Name = confirm1Name;
  139. }
  140. public String getConfirm2Name() {
  141. return confirm2Name;
  142. }
  143. public void setConfirm2Name(String confirm2Name) {
  144. this.confirm2Name = confirm2Name;
  145. }
  146. /** 确认人1 */
  147. @Excel(name = "确认人1")
  148. private String confirm1;
  149. /** 确认人2 */
  150. @Excel(name = "确认人2")
  151. private String confirm2;
  152. private Long[] ids;
  153. private Long taskType;
  154. public String getConfirm1() {
  155. return confirm1;
  156. }
  157. public void setConfirm1(String confirm1) {
  158. this.confirm1 = confirm1;
  159. }
  160. public String getConfirm2() {
  161. return confirm2;
  162. }
  163. public void setConfirm2(String confirm2) {
  164. this.confirm2 = confirm2;
  165. }
  166. public Long[] getIds() {
  167. return ids;
  168. }
  169. public void setIds(Long[] ids) {
  170. this.ids = ids;
  171. }
  172. public Long getTaskType() {
  173. return taskType;
  174. }
  175. public void setTaskType(Long taskType) {
  176. this.taskType = taskType;
  177. }
  178. public void setId(Long id)
  179. {
  180. this.id = id;
  181. }
  182. public Long getId()
  183. {
  184. return id;
  185. }
  186. public void setSubId(Long subId)
  187. {
  188. this.subId = subId;
  189. }
  190. public Long getSubId()
  191. {
  192. return subId;
  193. }
  194. public void setApproveId(Long approveId)
  195. {
  196. this.approveId = approveId;
  197. }
  198. public Long getApproveId()
  199. {
  200. return approveId;
  201. }
  202. public void setUnit(String unit)
  203. {
  204. this.unit = unit;
  205. }
  206. public String getUnit()
  207. {
  208. return unit;
  209. }
  210. public void setDevNo(String devNo)
  211. {
  212. this.devNo = devNo;
  213. }
  214. public String getDevNo()
  215. {
  216. return devNo;
  217. }
  218. public void setVisualInspection(String visualInspection)
  219. {
  220. this.visualInspection = visualInspection;
  221. }
  222. public String getVisualInspection()
  223. {
  224. return visualInspection;
  225. }
  226. public void setInstallationInspection(String installationInspection)
  227. {
  228. this.installationInspection = installationInspection;
  229. }
  230. public String getInstallationInspection()
  231. {
  232. return installationInspection;
  233. }
  234. public void setFunctionalCheck(String functionalCheck)
  235. {
  236. this.functionalCheck = functionalCheck;
  237. }
  238. public String getFunctionalCheck()
  239. {
  240. return functionalCheck;
  241. }
  242. public void setMeterChecker(String meterChecker)
  243. {
  244. this.meterChecker = meterChecker;
  245. }
  246. public String getMeterChecker()
  247. {
  248. return meterChecker;
  249. }
  250. public void setProcessValidator(String processValidator)
  251. {
  252. this.processValidator = processValidator;
  253. }
  254. public String getProcessValidator()
  255. {
  256. return processValidator;
  257. }
  258. public void setConfirmationDate(Date confirmationDate)
  259. {
  260. this.confirmationDate = confirmationDate;
  261. }
  262. public Date getConfirmationDate()
  263. {
  264. return confirmationDate;
  265. }
  266. public void setDelFlag(Long delFlag)
  267. {
  268. this.delFlag = delFlag;
  269. }
  270. public Long getDelFlag()
  271. {
  272. return delFlag;
  273. }
  274. public void setCreaterCode(String createrCode)
  275. {
  276. this.createrCode = createrCode;
  277. }
  278. public String getCreaterCode()
  279. {
  280. return createrCode;
  281. }
  282. public void setCreatedate(Date createdate)
  283. {
  284. this.createdate = createdate;
  285. }
  286. public Date getCreatedate()
  287. {
  288. return createdate;
  289. }
  290. public void setUpdaterCode(String updaterCode)
  291. {
  292. this.updaterCode = updaterCode;
  293. }
  294. public String getUpdaterCode()
  295. {
  296. return updaterCode;
  297. }
  298. public void setUpdatedate(Date updatedate)
  299. {
  300. this.updatedate = updatedate;
  301. }
  302. public Date getUpdatedate()
  303. {
  304. return updatedate;
  305. }
  306. public void setDeptId(Long deptId)
  307. {
  308. this.deptId = deptId;
  309. }
  310. public Long getDeptId()
  311. {
  312. return deptId;
  313. }
  314. public void setRemarks(String remarks)
  315. {
  316. this.remarks = remarks;
  317. }
  318. public String getRemarks()
  319. {
  320. return remarks;
  321. }
  322. public void setApproveStatus(Long approveStatus)
  323. {
  324. this.approveStatus = approveStatus;
  325. }
  326. public Long getApproveStatus()
  327. {
  328. return approveStatus;
  329. }
  330. @Override
  331. public String toString() {
  332. return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
  333. .append("id", getId())
  334. .append("subId", getSubId())
  335. .append("approveId", getApproveId())
  336. .append("unit", getUnit())
  337. .append("devNo", getDevNo())
  338. .append("visualInspection", getVisualInspection())
  339. .append("installationInspection", getInstallationInspection())
  340. .append("functionalCheck", getFunctionalCheck())
  341. .append("meterChecker", getMeterChecker())
  342. .append("processValidator", getProcessValidator())
  343. .append("confirmationDate", getConfirmationDate())
  344. .append("delFlag", getDelFlag())
  345. .append("createrCode", getCreaterCode())
  346. .append("createdate", getCreatedate())
  347. .append("updaterCode", getUpdaterCode())
  348. .append("updatedate", getUpdatedate())
  349. .append("deptId", getDeptId())
  350. .append("remarks", getRemarks())
  351. .append("approveStatus", getApproveStatus())
  352. .toString();
  353. }
  354. }