From de2eb243655126fc149a11031995d5ded57796e3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E7=AB=A5=E6=88=90?= <13191486+tong-cheng666@user.noreply.gitee.com> Date: Tue, 31 Oct 2023 20:04:51 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E7=9F=A5=E8=AF=86=E5=BA=93?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../duck/communitypatients/SymptomsDrugs.java | 46 ++++++++++++++----- 1 file changed, 35 insertions(+), 11 deletions(-) diff --git a/src/main/java/com/four/common/duck/communitypatients/SymptomsDrugs.java b/src/main/java/com/four/common/duck/communitypatients/SymptomsDrugs.java index ad250ee..3d8764a 100644 --- a/src/main/java/com/four/common/duck/communitypatients/SymptomsDrugs.java +++ b/src/main/java/com/four/common/duck/communitypatients/SymptomsDrugs.java @@ -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 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 getDepartmentList() { + return departmentList; + } + + public void setDepartmentList(List 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 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; + } }