Merge remote-tracking branch 'origin/master'
commit
c6b08f9ebb
|
@ -1,5 +1,7 @@
|
|||
package com.four.common.duck.communitypatients;
|
||||
|
||||
import java.util.List;
|
||||
|
||||
/**
|
||||
* 常见病症+常见药品表
|
||||
*/
|
||||
|
@ -20,6 +22,9 @@ public class SymptomsDrugs {
|
|||
*/
|
||||
private Long pid;
|
||||
|
||||
//科室
|
||||
private List<SymptomsDrugs> departmentList;
|
||||
|
||||
|
||||
private String aname;
|
||||
private String bname;
|
||||
|
@ -45,17 +50,6 @@ public class SymptomsDrugs {
|
|||
*/
|
||||
private String img;
|
||||
|
||||
public SymptomsDrugs() {
|
||||
}
|
||||
|
||||
public SymptomsDrugs(Long id, String name,String aname,String bname, Long pid, String img) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.pid = pid;
|
||||
this.img = img;
|
||||
this.aname = aname;
|
||||
this.bname = bname;
|
||||
}
|
||||
|
||||
public Long getId() {
|
||||
return id;
|
||||
|
@ -80,4 +74,34 @@ public class SymptomsDrugs {
|
|||
public void setPid(Long pid) {
|
||||
this.pid = pid;
|
||||
}
|
||||
|
||||
public List<SymptomsDrugs> getDepartmentList() {
|
||||
return departmentList;
|
||||
}
|
||||
|
||||
public void setDepartmentList(List<SymptomsDrugs> departmentList) {
|
||||
this.departmentList = departmentList;
|
||||
}
|
||||
|
||||
|
||||
public String getImg() {
|
||||
return img;
|
||||
}
|
||||
|
||||
public void setImg(String img) {
|
||||
this.img = img;
|
||||
}
|
||||
|
||||
public SymptomsDrugs() {
|
||||
}
|
||||
|
||||
public SymptomsDrugs(Long id, String name, Long pid, List<SymptomsDrugs> departmentList, String aname, String bname, String img) {
|
||||
this.id = id;
|
||||
this.name = name;
|
||||
this.pid = pid;
|
||||
this.departmentList = departmentList;
|
||||
this.aname = aname;
|
||||
this.bname = bname;
|
||||
this.img = img;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue