package com.gkhy.safePlatform.incidentManage.model.dto.resp;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
import java.util.Date;
|
|
public class AccidentCasePageRespDTO {
|
|
private Long id;
|
|
private String caseTitle;
|
|
@JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss")
|
private Date caseTime;
|
|
public Long getId() {
|
return id;
|
}
|
|
public void setId(Long id) {
|
this.id = id;
|
}
|
|
public String getCaseTitle() {
|
return caseTitle;
|
}
|
|
public void setCaseTitle(String caseTitle) {
|
this.caseTitle = caseTitle;
|
}
|
|
public Date getCaseTime() {
|
return caseTime;
|
}
|
|
public void setCaseTime(Date caseTime) {
|
this.caseTime = caseTime;
|
}
|
}
|