| | |
| | | package com.gkhy.safePlatform.incidentManage.model.dto.req; |
| | | |
| | | import com.gkhy.safePlatform.incidentManage.entity.AccidentExpressFileInfoDO; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | |
| | | public class AccidentExpressReqDTO{ |
| | | |
| | | private Long id; |
| | | |
| | | private String createName; |
| | | |
| | | public String getCreateName() { |
| | | return createName; |
| | | } |
| | | |
| | | public void setCreateName(String createName) { |
| | | this.createName = createName; |
| | | } |
| | | |
| | | private String emergencyPrecautions; |
| | | |
| | |
| | | |
| | | private Boolean casualties; |
| | | |
| | | private String accidentCause; |
| | | private Byte accidentCause; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date occurrenceTime; |
| | | |
| | | private String occurrencePlace; |
| | |
| | | this.casualties = casualties; |
| | | } |
| | | |
| | | public String getAccidentCause() { |
| | | public Byte getAccidentCause() { |
| | | return accidentCause; |
| | | } |
| | | |
| | | public void setAccidentCause(String accidentCause) { |
| | | public void setAccidentCause(Byte accidentCause) { |
| | | this.accidentCause = accidentCause; |
| | | } |
| | | |