From 42f326005d312418a3b04aa48efe462963b8e6a3 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: Thu, 26 Oct 2023 09:05:44 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../duck/communitypatients/DrugDetails.java | 139 ------------------ .../PathologicalDetails.java | 97 ------------ .../request/PathologicalDetailsRequest.java | 130 ---------------- 3 files changed, 366 deletions(-) delete mode 100644 src/main/java/com/four/common/duck/communitypatients/DrugDetails.java delete mode 100644 src/main/java/com/four/common/duck/communitypatients/PathologicalDetails.java delete mode 100644 src/main/java/com/four/common/duck/request/PathologicalDetailsRequest.java diff --git a/src/main/java/com/four/common/duck/communitypatients/DrugDetails.java b/src/main/java/com/four/common/duck/communitypatients/DrugDetails.java deleted file mode 100644 index a03c079..0000000 --- a/src/main/java/com/four/common/duck/communitypatients/DrugDetails.java +++ /dev/null @@ -1,139 +0,0 @@ -package com.four.common.duck.communitypatients; - -/** - * 药品详情表 - */ -public class DrugDetails { - - /** - * 药品详情id - */ - private Integer drugDetailsId; - - /** - * 常见病症+常见药品表id - */ - private Integer id; - - /** - * 药品成分 - */ - private String pharmaceuticalIngredient; - - /** - * 用药禁忌 - */ - private String drugContraindication; - - /** - * 功能主治 - */ - private String functionalIndications; - - /** - * 用法用量 - */ - private String usageDosage; - - /** - * 药品性状 - */ - private String drugCharacter; - - /** - * 包装规格 - */ - private String packingSpecification; - - /** - * 不良反应 - */ - private String adverseReaction; - - public Integer getDrugDetailsId() { - return drugDetailsId; - } - - public void setDrugDetailsId(Integer drugDetailsId) { - this.drugDetailsId = drugDetailsId; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getPharmaceuticalIngredient() { - return pharmaceuticalIngredient; - } - - public void setPharmaceuticalIngredient(String pharmaceuticalIngredient) { - this.pharmaceuticalIngredient = pharmaceuticalIngredient; - } - - public String getDrugContraindication() { - return drugContraindication; - } - - public void setDrugContraindication(String drugContraindication) { - this.drugContraindication = drugContraindication; - } - - public String getFunctionalIndications() { - return functionalIndications; - } - - public void setFunctionalIndications(String functionalIndications) { - this.functionalIndications = functionalIndications; - } - - public String getUsageDosage() { - return usageDosage; - } - - public void setUsageDosage(String usageDosage) { - this.usageDosage = usageDosage; - } - - public String getDrugCharacter() { - return drugCharacter; - } - - public void setDrugCharacter(String drugCharacter) { - this.drugCharacter = drugCharacter; - } - - public String getPackingSpecification() { - return packingSpecification; - } - - public void setPackingSpecification(String packingSpecification) { - this.packingSpecification = packingSpecification; - } - - public String getAdverseReaction() { - return adverseReaction; - } - - public void setAdverseReaction(String adverseReaction) { - this.adverseReaction = adverseReaction; - } - - public DrugDetails(Integer drugDetailsId, Integer id, String pharmaceuticalIngredient, String drugContraindication, String functionalIndications, String usageDosage, String drugCharacter, String packingSpecification, String adverseReaction) { - this.drugDetailsId = drugDetailsId; - this.id = id; - this.pharmaceuticalIngredient = pharmaceuticalIngredient; - this.drugContraindication = drugContraindication; - this.functionalIndications = functionalIndications; - this.usageDosage = usageDosage; - this.drugCharacter = drugCharacter; - this.packingSpecification = packingSpecification; - this.adverseReaction = adverseReaction; - } - - public DrugDetails() { - } -} diff --git a/src/main/java/com/four/common/duck/communitypatients/PathologicalDetails.java b/src/main/java/com/four/common/duck/communitypatients/PathologicalDetails.java deleted file mode 100644 index 2628e3b..0000000 --- a/src/main/java/com/four/common/duck/communitypatients/PathologicalDetails.java +++ /dev/null @@ -1,97 +0,0 @@ -package com.four.common.duck.communitypatients; - -/** - * 病症详情表 - */ -public class PathologicalDetails { - - /** - * 病症详情id - */ - private Integer detailsSymptomsId; - - /** - * 常见病症+常见药品id - */ - private Integer id; - - /** - * 病理 - */ - private String pathology; - - /** - * 症状 - */ - private String symptom; - - /** - * 宜与忌 - */ - private String prosCons; - - /** - * 中西药的治疗 - */ - private String heal; - - public PathologicalDetails() { - } - - public PathologicalDetails(Integer detailsSymptomsId, Integer id, String pathology, String symptom, String prosCons, String heal) { - this.detailsSymptomsId = detailsSymptomsId; - this.id = id; - this.pathology = pathology; - this.symptom = symptom; - this.prosCons = prosCons; - this.heal = heal; - } - - public Integer getDetailsSymptomsId() { - return detailsSymptomsId; - } - - public void setDetailsSymptomsId(Integer detailsSymptomsId) { - this.detailsSymptomsId = detailsSymptomsId; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getPathology() { - return pathology; - } - - public void setPathology(String pathology) { - this.pathology = pathology; - } - - public String getSymptom() { - return symptom; - } - - public void setSymptom(String symptom) { - this.symptom = symptom; - } - - public String getProsCons() { - return prosCons; - } - - public void setProsCons(String prosCons) { - this.prosCons = prosCons; - } - - public String getHeal() { - return heal; - } - - public void setHeal(String heal) { - this.heal = heal; - } -} diff --git a/src/main/java/com/four/common/duck/request/PathologicalDetailsRequest.java b/src/main/java/com/four/common/duck/request/PathologicalDetailsRequest.java deleted file mode 100644 index 0ba0a90..0000000 --- a/src/main/java/com/four/common/duck/request/PathologicalDetailsRequest.java +++ /dev/null @@ -1,130 +0,0 @@ -package com.four.common.duck.request; - -/** - * @author: tongCheng - * @Package: four-common-duck - * @ClassName: PathologicalDetailsRequest - * @date: 2023-10-20 18:55 - * 病症详情+病症药品表联查 - **/ -public class PathologicalDetailsRequest { - - /** - * 病症详情id - */ - private Integer detailsSymptomsId; - - /** - * 常见病症+常见药品id - */ - private Integer id; - - /** - * 病理 - */ - private String pathology; - - /** - * 症状 - */ - private String symptom; - - /** - * 宜与忌 - */ - private String prosCons; - - /** - * 中西药的治疗 - */ - private String heal; - - /** - * 名称 - */ - private String name; - - /** - * 与id关联 - */ - private Integer pid; - - - public Integer getDetailsSymptomsId() { - return detailsSymptomsId; - } - - public void setDetailsSymptomsId(Integer detailsSymptomsId) { - this.detailsSymptomsId = detailsSymptomsId; - } - - public Integer getId() { - return id; - } - - public void setId(Integer id) { - this.id = id; - } - - public String getPathology() { - return pathology; - } - - public void setPathology(String pathology) { - this.pathology = pathology; - } - - public String getSymptom() { - return symptom; - } - - public void setSymptom(String symptom) { - this.symptom = symptom; - } - - public String getProsCons() { - return prosCons; - } - - public void setProsCons(String prosCons) { - this.prosCons = prosCons; - } - - public String getHeal() { - return heal; - } - - public void setHeal(String heal) { - this.heal = heal; - } - - public String getName() { - return name; - } - - public void setName(String name) { - this.name = name; - } - - public Integer getPid() { - return pid; - } - - public void setPid(Integer pid) { - this.pid = pid; - } - - public PathologicalDetailsRequest() { - } - - public PathologicalDetailsRequest(Integer detailsSymptomsId, Integer id, String pathology, String symptom, String prosCons, String heal, String name, Integer pid) { - this.detailsSymptomsId = detailsSymptomsId; - this.id = id; - this.pathology = pathology; - this.symptom = symptom; - this.prosCons = prosCons; - this.heal = heal; - this.name = name; - this.pid = pid; - } -}