package com.gkhy.safePlatform.incidentManage.entity; import com.baomidou.mybatisplus.annotation.IdType; import com.baomidou.mybatisplus.annotation.TableId; import com.baomidou.mybatisplus.annotation.TableName; import java.util.Date; @TableName("work_injury_declaration") public class WorkInjuryDeclarationInfoPageDO { 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; } @TableId(type = IdType.AUTO) private Long id; private String declareUserName; private Long declareDepartmentId; private Long accidentExpressId; private Byte workInjuryType; 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 Byte getWorkInjuryType() { return workInjuryType; } public void setWorkInjuryType(Byte 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; } }