修改知识库
parent
e467c598ef
commit
35136d96f3
|
@ -24,9 +24,21 @@ public class SymptomsDrugs {
|
||||||
*/
|
*/
|
||||||
private Long pid;
|
private Long pid;
|
||||||
|
|
||||||
//科室
|
/**
|
||||||
|
* 病症+药品
|
||||||
|
*/
|
||||||
private List<SymptomsDrugsRequest> departmentList;
|
private List<SymptomsDrugsRequest> departmentList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 病症详情
|
||||||
|
*/
|
||||||
|
private List<DiseaseDetail> diseaseDetailList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 药品详情
|
||||||
|
*/
|
||||||
|
private List<MedicineDetail> medicineDetailList;
|
||||||
|
|
||||||
|
|
||||||
private String aname;
|
private String aname;
|
||||||
private String bname;
|
private String bname;
|
||||||
|
@ -85,6 +97,21 @@ public class SymptomsDrugs {
|
||||||
this.departmentList = departmentList;
|
this.departmentList = departmentList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public List<DiseaseDetail> getDiseaseDetailList() {
|
||||||
|
return diseaseDetailList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setDiseaseDetailList(List<DiseaseDetail> diseaseDetailList) {
|
||||||
|
this.diseaseDetailList = diseaseDetailList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public List<MedicineDetail> getMedicineDetailList() {
|
||||||
|
return medicineDetailList;
|
||||||
|
}
|
||||||
|
|
||||||
|
public void setMedicineDetailList(List<MedicineDetail> medicineDetailList) {
|
||||||
|
this.medicineDetailList = medicineDetailList;
|
||||||
|
}
|
||||||
|
|
||||||
public String getImg() {
|
public String getImg() {
|
||||||
return img;
|
return img;
|
||||||
|
@ -97,11 +124,13 @@ public class SymptomsDrugs {
|
||||||
public SymptomsDrugs() {
|
public SymptomsDrugs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugsRequest> departmentList, String aname, String bname, String img) {
|
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugsRequest> departmentList, List<DiseaseDetail> diseaseDetailList, List<MedicineDetail> medicineDetailList, String aname, String bname, String img) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.pid = pid;
|
this.pid = pid;
|
||||||
this.departmentList = departmentList;
|
this.departmentList = departmentList;
|
||||||
|
this.diseaseDetailList = diseaseDetailList;
|
||||||
|
this.medicineDetailList = medicineDetailList;
|
||||||
this.aname = aname;
|
this.aname = aname;
|
||||||
this.bname = bname;
|
this.bname = bname;
|
||||||
this.img = img;
|
this.img = img;
|
||||||
|
|
Loading…
Reference in New Issue