添加类

master
童成 2023-10-20 18:59:08 +08:00
parent 210285a501
commit cee1fb9948
2 changed files with 134 additions and 5 deletions

View File

@ -15,6 +15,11 @@ public class SymptomsDrugs {
*/
private String name;
/**
* id
*/
private Integer pid;
private String aname;
private String bname;
@ -35,11 +40,6 @@ public class SymptomsDrugs {
this.bname = bname;
}
/**
* id
*/
private Integer pid;
/**
*
*/

View File

@ -0,0 +1,129 @@
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;
}
}