master
童成 2023-10-26 09:05:44 +08:00
parent ca908b9fd9
commit 42f326005d
3 changed files with 0 additions and 366 deletions

View File

@ -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() {
}
}

View File

@ -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;
}
}

View File

@ -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;
}
}