修改知识库
parent
35136d96f3
commit
3c4a70e581
|
@ -97,22 +97,6 @@ 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;
|
||||||
}
|
}
|
||||||
|
@ -124,13 +108,11 @@ public class SymptomsDrugs {
|
||||||
public SymptomsDrugs() {
|
public SymptomsDrugs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugsRequest> departmentList, List<DiseaseDetail> diseaseDetailList, List<MedicineDetail> medicineDetailList, String aname, String bname, String img) {
|
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugsRequest> departmentList, 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;
|
||||||
|
|
|
@ -1,5 +1,10 @@
|
||||||
package com.four.common.duck.request;
|
package com.four.common.duck.request;
|
||||||
|
|
||||||
|
import com.four.common.duck.communitypatients.DiseaseDetail;
|
||||||
|
import com.four.common.duck.communitypatients.MedicineDetail;
|
||||||
|
|
||||||
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @author: tongCheng
|
* @author: tongCheng
|
||||||
* @Package: four-common-duck
|
* @Package: four-common-duck
|
||||||
|
@ -22,6 +27,17 @@ public class SymptomsDrugsRequest {
|
||||||
*/
|
*/
|
||||||
private Long pid;
|
private Long pid;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 病症详情
|
||||||
|
*/
|
||||||
|
private List<DiseaseDetail> diseaseDetailList;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 药品详情
|
||||||
|
*/
|
||||||
|
private List<MedicineDetail> medicineDetailList;
|
||||||
|
|
||||||
|
|
||||||
public Long getId() {
|
public Long getId() {
|
||||||
return id;
|
return id;
|
||||||
}
|
}
|
||||||
|
@ -46,12 +62,30 @@ public class SymptomsDrugsRequest {
|
||||||
this.pid = pid;
|
this.pid = pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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 SymptomsDrugsRequest() {
|
public SymptomsDrugsRequest() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SymptomsDrugsRequest(Long id, String name, Long pid) {
|
public SymptomsDrugsRequest(Long id, String name, Long pid, List<DiseaseDetail> diseaseDetailList, List<MedicineDetail> medicineDetailList) {
|
||||||
this.id = id;
|
this.id = id;
|
||||||
this.name = name;
|
this.name = name;
|
||||||
this.pid = pid;
|
this.pid = pid;
|
||||||
|
this.diseaseDetailList = diseaseDetailList;
|
||||||
|
this.medicineDetailList = medicineDetailList;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue