修改知识库
parent
27a38403b9
commit
e467c598ef
|
@ -1,5 +1,7 @@
|
||||||
package com.four.common.duck.communitypatients;
|
package com.four.common.duck.communitypatients;
|
||||||
|
|
||||||
|
import com.four.common.duck.request.SymptomsDrugsRequest;
|
||||||
|
|
||||||
import java.util.List;
|
import java.util.List;
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
@ -23,7 +25,7 @@ public class SymptomsDrugs {
|
||||||
private Long pid;
|
private Long pid;
|
||||||
|
|
||||||
//科室
|
//科室
|
||||||
private List<SymptomsDrugs> departmentList;
|
private List<SymptomsDrugsRequest> departmentList;
|
||||||
|
|
||||||
|
|
||||||
private String aname;
|
private String aname;
|
||||||
|
@ -75,11 +77,11 @@ public class SymptomsDrugs {
|
||||||
this.pid = pid;
|
this.pid = pid;
|
||||||
}
|
}
|
||||||
|
|
||||||
public List<SymptomsDrugs> getDepartmentList() {
|
public List<SymptomsDrugsRequest> getDepartmentList() {
|
||||||
return departmentList;
|
return departmentList;
|
||||||
}
|
}
|
||||||
|
|
||||||
public void setDepartmentList(List<SymptomsDrugs> departmentList) {
|
public void setDepartmentList(List<SymptomsDrugsRequest> departmentList) {
|
||||||
this.departmentList = departmentList;
|
this.departmentList = departmentList;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -95,7 +97,7 @@ public class SymptomsDrugs {
|
||||||
public SymptomsDrugs() {
|
public SymptomsDrugs() {
|
||||||
}
|
}
|
||||||
|
|
||||||
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugs> departmentList, 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;
|
||||||
|
|
Loading…
Reference in New Issue