| | |
| | | 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 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.effect = efficacy; |
| | | this.remark = remark; |
| | | this.url = url; |
| | | } |
| | | |
| | | public LittleDoctorBean() { |
| | | |
| | | } |
| | | |
| | | public int getId() { |
| | |
| | | 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; |
| | | } |
| | | } |