From d015cc0b48ca51a2b93b6c60c91dc352a104b1e7 Mon Sep 17 00:00:00 2001 From: kongzy <kongzy> Date: 星期一, 23 九月 2024 10:41:50 +0800 Subject: [PATCH] 删除密码加密 --- incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentReportDetailRespDTO.java | 58 +++++++++++++++++++++++++++++++++++++++------------------- 1 files changed, 39 insertions(+), 19 deletions(-) diff --git a/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentReportDetailRespDTO.java b/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentReportDetailRespDTO.java index b92aa9e..aa6d64d 100644 --- a/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentReportDetailRespDTO.java +++ b/incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/resp/AccidentReportDetailRespDTO.java @@ -9,6 +9,36 @@ public class AccidentReportDetailRespDTO { + private List<AccidentExpressFileRespDTO> expressFileList; + + public List<AccidentExpressFileRespDTO> getExpressFileList() { + return expressFileList; + } + + public void setExpressFileList(List<AccidentExpressFileRespDTO> expressFileList) { + this.expressFileList = expressFileList; + } + + private Integer status; + + public Integer getStatus() { + return status; + } + + public void setStatus(Integer status) { + this.status = status; + } + + private String fillInUserName; + + public String getFillInUserName() { + return fillInUserName; + } + + public void setFillInUserName(String fillInUserName) { + this.fillInUserName = fillInUserName; + } + private String accidentName; private Long accidentDepartmentId; @@ -52,13 +82,11 @@ private Long id; - private Boolean status ; - private Long accidentExpressId; - private String accidentType; + private Byte accidentType; - private String accidentGrade; + private Byte accidentGrade; private BigDecimal economicLoss; @@ -73,7 +101,7 @@ @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date reportDeadline; - private String accidentLevel; + private Byte accidentLevel; private String accidentDelayApply; @@ -96,14 +124,6 @@ private List<AccidentReportFileRespDTO> fileList; - public Boolean getStatus() { - return status; - } - - public void setStatus(Boolean status) { - this.status = status; - } - public Long getId() { return id; } @@ -120,19 +140,19 @@ this.accidentExpressId = accidentExpressId; } - public String getAccidentType() { + public Byte getAccidentType() { return accidentType; } - public void setAccidentType(String accidentType) { + public void setAccidentType(Byte accidentType) { this.accidentType = accidentType; } - public String getAccidentGrade() { + public Byte getAccidentGrade() { return accidentGrade; } - public void setAccidentGrade(String accidentGrade) { + public void setAccidentGrade(Byte accidentGrade) { this.accidentGrade = accidentGrade; } @@ -184,11 +204,11 @@ this.reportDeadline = reportDeadline; } - public String getAccidentLevel() { + public Byte getAccidentLevel() { return accidentLevel; } - public void setAccidentLevel(String accidentLevel) { + public void setAccidentLevel(Byte accidentLevel) { this.accidentLevel = accidentLevel; } -- Gitblit v1.9.2