kongzy
2024-09-23 d015cc0b48ca51a2b93b6c60c91dc352a104b1e7
incident-manage/incident-manage-service/src/main/java/com/gkhy/safePlatform/incidentManage/model/dto/req/AccidentReportReqDTO.java
@@ -8,13 +8,33 @@
public class AccidentReportReqDTO {
    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 Long id;
    private Long accidentExpressId;
    private String accidentType;
    private Byte accidentType;
    private String accidentGrade;
    private Byte accidentGrade;
    private BigDecimal economicLoss;
@@ -29,7 +49,7 @@
    @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
    private Date reportDeadline;
    private String accidentLevel;
    private Byte accidentLevel;
    private String accidentDelayApply;
@@ -68,19 +88,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;
    }
@@ -132,11 +152,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;
    }