| | |
| | | package com.gkhy.safePlatform.incidentManage.model.dto.resp; |
| | | |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | public class AccidentExpressPageRespDTO{ |
| | | import java.io.Serializable; |
| | | import java.util.Date; |
| | | |
| | | public class AccidentExpressPageRespDTO implements Serializable { |
| | | |
| | | private static final long serialVersionUID = -3992394113427902200L; |
| | | |
| | | private String createName; |
| | | |
| | | public String getCreateName() { |
| | | return createName; |
| | | } |
| | | |
| | | public void setCreateName(String createName) { |
| | | this.createName = createName; |
| | | } |
| | | |
| | | private String deptName; |
| | | |
| | | public String getDeptName() { |
| | | return deptName; |
| | | } |
| | | |
| | | public void setDeptName(String deptName) { |
| | | this.deptName = deptName; |
| | | } |
| | | |
| | | private Long id; |
| | | |
| | |
| | | |
| | | private Long createUid; |
| | | |
| | | private String accidentCause; |
| | | private Byte accidentCause; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date occurrenceTime; |
| | | |
| | | private String occurrencePlace; |
| | |
| | | } |
| | | |
| | | |
| | | public String getAccidentCause() { |
| | | public Byte getAccidentCause() { |
| | | return accidentCause; |
| | | } |
| | | |
| | | public void setAccidentCause(String accidentCause) { |
| | | public void setAccidentCause(Byte accidentCause) { |
| | | this.accidentCause = accidentCause; |
| | | } |
| | | |