songhuangfeng123
2022-08-05 c4354b452cb7b09fe28a9e8ea81f455df1c68de8
emergency/emergency-service/src/main/java/com/gkhy/safePlatform/emergency/model/dto/req/EmergencyPlanReqDTO.java
@@ -1,14 +1,27 @@
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;