| | |
| | | @TableName("emergency_plan") |
| | | public class EmergencyPlanInfoDetailDO { |
| | | |
| | | private String authorName; |
| | | |
| | | public String getAuthorName() { |
| | | return authorName; |
| | | } |
| | | |
| | | public void setAuthorName(String authorName) { |
| | | this.authorName = authorName; |
| | | } |
| | | |
| | | @TableId(type = IdType.AUTO) |
| | | private Long id; |
| | | |
| | | private Byte status; |
| | | private Integer status; |
| | | |
| | | private Date releaseDate; |
| | | |
| | |
| | | |
| | | private Long authorDeptId; |
| | | |
| | | private Byte associatedDanger; |
| | | private Boolean associatedDanger; |
| | | |
| | | private String type; |
| | | |
| | |
| | | this.id = id; |
| | | } |
| | | |
| | | public Byte getStatus() { |
| | | public Integer getStatus() { |
| | | return status; |
| | | } |
| | | |
| | | public void setStatus(Byte status) { |
| | | public void setStatus(Integer status) { |
| | | this.status = status; |
| | | } |
| | | |
| | |
| | | this.authorDeptId = authorDeptId; |
| | | } |
| | | |
| | | public Byte getAssociatedDanger() { |
| | | public Boolean getAssociatedDanger() { |
| | | return associatedDanger; |
| | | } |
| | | |
| | | public void setAssociatedDanger(Byte associatedDanger) { |
| | | public void setAssociatedDanger(Boolean associatedDanger) { |
| | | this.associatedDanger = associatedDanger; |
| | | } |
| | | |