package com.gkhy.safePlatform.incidentManage.model.dto.resp; import com.fasterxml.jackson.annotation.JsonFormat; import java.util.Date; public class WorkInjuryDeclarationPageRespDTO { private String deptName; public String getDeptName() { return deptName; } public void setDeptName(String deptName) { this.deptName = deptName; } private String accidentName; public String getAccidentName() { return accidentName; } public void setAccidentName(String accidentName) { this.accidentName = accidentName; } private Long id; private String declareUserName; private Long declareDepartmentId; private Long accidentExpressId; private String workInjuryType; @JsonFormat(pattern = "yyyy-MM-dd HH:mm:ss") private Date declareDate; private String visitHospital; public Long getId() { return id; } public void setId(Long id) { this.id = id; } public String getDeclareUserName() { return declareUserName; } public void setDeclareUserName(String declareUserName) { this.declareUserName = declareUserName; } public Long getDeclareDepartmentId() { return declareDepartmentId; } public void setDeclareDepartmentId(Long declareDepartmentId) { this.declareDepartmentId = declareDepartmentId; } public Long getAccidentExpressId() { return accidentExpressId; } public void setAccidentExpressId(Long accidentExpressId) { this.accidentExpressId = accidentExpressId; } public String getWorkInjuryType() { return workInjuryType; } public void setWorkInjuryType(String workInjuryType) { this.workInjuryType = workInjuryType; } public Date getDeclareDate() { return declareDate; } public void setDeclareDate(Date declareDate) { this.declareDate = declareDate; } public String getVisitHospital() { return visitHospital; } public void setVisitHospital(String visitHospital) { this.visitHospital = visitHospital; } }