package com.gkhy.safePlatform.emergency.model.dto.resp;
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class EmergencyPlanLogRespDTO {
|
|
private Long id;
|
|
private Long planId;
|
|
private Long userUId;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date startCreate;
|
|
private String remark;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public Long getPlanId() {
|
return planId;
|
}
|
|
public void setPlanId(Long planId) {
|
this.planId = planId;
|
}
|
|
public Long getUserUId() {
|
return userUId;
|
}
|
|
public void setUserUId(Long userUId) {
|
this.userUId = userUId;
|
}
|
|
public Date getStartCreate() {
|
return startCreate;
|
}
|
|
public void setStartCreate(Date startCreate) {
|
this.startCreate = startCreate;
|
}
|
|
public String getRemark() {
|
return remark;
|
}
|
|
public void setRemark(String remark) {
|
this.remark = remark;
|
}
|
|
@Override
|
public String toString() {
|
return "EmergencyPlanLogRespDTO{" +
|
"id=" + id +
|
", planId=" + planId +
|
", userUId=" + userUId +
|
", startCreate=" + startCreate +
|
", remark='" + remark + '\'' +
|
'}';
|
}
|
}
|