Linjiajia
2023-07-25 82e57df230ecb744af6c8865f80870ba03c86d89
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
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;
    //体检时间
    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;
    }
}