| | |
| | | package com.gkhy.safePlatform.incidentManage.model.dto.req; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import java.math.BigDecimal; |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | 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 String accidentCause; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date reportDeadline; |
| | | |
| | | private String accidentLevel; |
| | |
| | | |
| | | private Long fillInUserUid; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date fillInTime; |
| | | |
| | | private String relevantPersonnelRecords; |