guoshen
2024-07-01 caead5ad019c24b9a7958f01fa663ea8159aee6c
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
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
package com.application.zhangshi_app_android.bean;
 
import java.io.Serializable;
 
/**
 * @author Ljj
 * @date 2023.04.15. 15:25
 * @desc
 */
public class LittleDoctorBean implements Serializable {
    private int id;
    private String type;//类型
    private String symptom;//症状
    private String duration;//持续时间
    private String cmedical;//中医处方
    private String wmedical;//西医处方
    private String effect;//功效
    private String suitable;//适用人群
    private String remark;//备注
    private String url;//电子文件地址
    private transient int familyId;//所属家庭 id
    private int ownData = 1;//是否是自己家庭的数据 1 是 0 不是
 
    public LittleDoctorBean(int id, String symptoms, String usingPeople, String duration, String type, String tcmPrescription, String westernMedicinePrescription, String efficacy, String remark, String url) {
        this.id = id;
        this.symptom = symptoms;
        this.suitable = usingPeople;
        this.duration = duration;
        this.type = type;
        this.cmedical = tcmPrescription;
        this.wmedical = westernMedicinePrescription;
        this.effect = efficacy;
        this.remark = remark;
        this.url = url;
    }
 
    public LittleDoctorBean() {
 
    }
 
    public int getId() {
        return id;
    }
 
    public void setId(int id) {
        this.id = id;
    }
 
    public String getSymptom() {
        return symptom;
    }
 
    public void setSymptom(String symptom) {
        this.symptom = symptom;
    }
 
    public String getSuitable() {
        return suitable;
    }
 
    public void setSuitable(String suitable) {
        this.suitable = suitable;
    }
 
    public String getDuration() {
        return duration;
    }
 
    public void setDuration(String duration) {
        this.duration = duration;
    }
 
    public String getType() {
        return type;
    }
 
    public void setType(String type) {
        this.type = type;
    }
 
    public String getCmedical() {
        return cmedical;
    }
 
    public void setCmedical(String cmedical) {
        this.cmedical = cmedical;
    }
 
    public String getWmedical() {
        return wmedical;
    }
 
    public void setWmedical(String wmedical) {
        this.wmedical = wmedical;
    }
 
    public String getEffect() {
        return effect;
    }
 
    public void setEffect(String effect) {
        this.effect = effect;
    }
 
    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;
    }
 
    public int getFamilyId() {
        return familyId;
    }
 
    public void setFamilyId(int familyId) {
        this.familyId = familyId;
    }
 
    public int getOwnData() {
        return ownData;
    }
 
    public void setOwnData(int ownData) {
        this.ownData = ownData;
    }
}