master
parent
ca908b9fd9
commit
42f326005d
|
@ -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() {
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
|
@ -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;
|
|
||||||
}
|
|
||||||
}
|
|
Loading…
Reference in New Issue