| | |
| | | import java.util.List; |
| | | |
| | | public class EmergencyPlanReqDTO { |
| | | |
| | | //编写人名称 |
| | | private String authorName; |
| | | |
| | | public String getAuthorName() { |
| | |
| | | } |
| | | |
| | | private Long id; |
| | | |
| | | //状态 |
| | | private Integer status; |
| | | |
| | | //发布实施日期 |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date releaseDate; |
| | | |
| | | //编写人uid |
| | | private Long authorUid; |
| | | |
| | | //编写部门id |
| | | private Long authorDeptId; |
| | | |
| | | //危险源关联:0否1是 |
| | | private Boolean associatedDanger; |
| | | |
| | | //预案类型(数据字典) |
| | | private Byte type; |
| | | |
| | | //预案级别(数据字典) |
| | | private Byte level; |
| | | |
| | | //预案名称 |
| | | private String name ; |
| | | |
| | | private List<EmergencyPlanAreaReqDTO> areaList; |
| | | |
| | | //部门列表 |
| | | private List<EmergencyPlanDepartmentReqDTO> deptList; |
| | | |
| | | //文件列表 |
| | | private List<EmergencyPlanFileReqDTO> fileList; |
| | | |
| | | //队伍列表 |
| | | private List<EmergencyPlanTeamReqDTO> teamList; |
| | | |
| | | public Long getId() { |