| | |
| | | package com.gkhy.safePlatform.emergency.model.dto.req; |
| | | |
| | | import com.fasterxml.jackson.annotation.JsonFormat; |
| | | |
| | | import java.util.Date; |
| | | import java.util.List; |
| | | |
| | | public class EmergencyPlanReqDTO { |
| | | |
| | | private String authorName; |
| | | |
| | | public String getAuthorName() { |
| | | return authorName; |
| | | } |
| | | |
| | | public void setAuthorName(String authorName) { |
| | | this.authorName = authorName; |
| | | } |
| | | |
| | | private Long id; |
| | | |
| | | private Integer status; |
| | | |
| | | @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") |
| | | private Date releaseDate; |
| | | |
| | | private Long authorUid; |
| | |
| | | |
| | | private Boolean associatedDanger; |
| | | |
| | | private String type; |
| | | private Byte type; |
| | | |
| | | private String level; |
| | | private Byte level; |
| | | |
| | | private String name ; |
| | | |
| | |
| | | this.associatedDanger = associatedDanger; |
| | | } |
| | | |
| | | public String getType() { |
| | | public Byte getType() { |
| | | return type; |
| | | } |
| | | |
| | | public void setType(String type) { |
| | | public void setType(Byte type) { |
| | | this.type = type; |
| | | } |
| | | |
| | | public String getLevel() { |
| | | public Byte getLevel() { |
| | | return level; |
| | | } |
| | | |
| | | public void setLevel(String level) { |
| | | public void setLevel(Byte level) { |
| | | this.level = level; |
| | | } |
| | | |