package com.application.zhangshi_app_android.bean; import java.io.Serializable; /** * @author Ljj * @date 2023.04.28. 19:39 * @desc 年度健康状况 Bean */ public class AnnualHealthStatusBean implements Serializable { //序号 private int id = -1; //体检时间 private String checkTime; //类别 private String type; //就病医院 private String hospital; //提名 private String title; //注意事项 private String notice; //备注 private String remark; //电子文件 private String url; public int getId() { return id; } public void setId(int id) { this.id = id; } public String getCheckTime() { return checkTime; } public void setCheckTime(String checkTime) { this.checkTime = checkTime; } public String getType() { return type; } public void setType(String type) { this.type = type; } public String getHospital() { return hospital; } public void setHospital(String hospital) { this.hospital = hospital; } public String getTitle() { return title; } public void setTitle(String title) { this.title = title; } public String getNotice() { return notice; } public void setNotice(String notice) { this.notice = notice; } public String getRemark() { return remark; } public void setRemark(String remark) { this.remark = remark; } public String getUrl() { return url; } public void setUrl(String url) { this.url = url; } }