|
@@ -16,47 +16,77 @@ public class InputInfo implements Serializable{
|
|
|
*/
|
|
|
@TableId(value = "id", type = IdType.AUTO)
|
|
|
private Long id;
|
|
|
- private String hospitalId;
|
|
|
- private String deptId;
|
|
|
- private String doctorId;
|
|
|
- private String recordId;
|
|
|
- private String patientId;
|
|
|
- private String age;
|
|
|
- private String sexType;
|
|
|
+
|
|
|
+ private String hospitalCode; //医院编码、ID
|
|
|
+ private String hosptialName;//医院名称
|
|
|
+ private String hosptialDeptCode;//科室编码、ID
|
|
|
+ private String hosptialDeptName;//科室名称
|
|
|
+ private String doctorCode;//医生编码、ID
|
|
|
+ private String doctorName;//医生名称
|
|
|
+ private String inquiryCode; //就诊ID
|
|
|
+ private String patientId;
|
|
|
+ private long age;//年龄
|
|
|
+ private String sexType;//性别,1:男,2:女
|
|
|
+ private String diseaseName;//疾病名称
|
|
|
+
|
|
|
private String paramIn;
|
|
|
private String paramOut;
|
|
|
- private Date transTime;
|
|
|
+ private String transTime;
|
|
|
private String remark;
|
|
|
|
|
|
+ public long getAge() {
|
|
|
+ return age;
|
|
|
+ }
|
|
|
+ public void setAge(long age) {
|
|
|
+ this.age = age;
|
|
|
+ }
|
|
|
public Long getId() {
|
|
|
return id;
|
|
|
}
|
|
|
public void setId(Long id) {
|
|
|
this.id = id;
|
|
|
}
|
|
|
- public String getHospitalId() {
|
|
|
- return hospitalId;
|
|
|
+ public String getHospitalCode() {
|
|
|
+ return hospitalCode;
|
|
|
+ }
|
|
|
+ public void setHospitalCode(String hospitalCode) {
|
|
|
+ this.hospitalCode = hospitalCode;
|
|
|
+ }
|
|
|
+ public String getHosptialName() {
|
|
|
+ return hosptialName;
|
|
|
+ }
|
|
|
+ public void setHosptialName(String hosptialName) {
|
|
|
+ this.hosptialName = hosptialName;
|
|
|
+ }
|
|
|
+ public String getHosptialDeptCode() {
|
|
|
+ return hosptialDeptCode;
|
|
|
}
|
|
|
- public void setHospitalId(String hospitalId) {
|
|
|
- this.hospitalId = hospitalId;
|
|
|
+ public void setHosptialDeptCode(String hosptialDeptCode) {
|
|
|
+ this.hosptialDeptCode = hosptialDeptCode;
|
|
|
}
|
|
|
- public String getDeptId() {
|
|
|
- return deptId;
|
|
|
+ public String getHosptialDeptName() {
|
|
|
+ return hosptialDeptName;
|
|
|
}
|
|
|
- public void setDeptId(String deptId) {
|
|
|
- this.deptId = deptId;
|
|
|
+ public void setHosptialDeptName(String hosptialDeptName) {
|
|
|
+ this.hosptialDeptName = hosptialDeptName;
|
|
|
}
|
|
|
- public String getDoctorId() {
|
|
|
- return doctorId;
|
|
|
+ public String getDoctorCode() {
|
|
|
+ return doctorCode;
|
|
|
}
|
|
|
- public void setDoctorId(String doctorId) {
|
|
|
- this.doctorId = doctorId;
|
|
|
+ public void setDoctorCode(String doctorCode) {
|
|
|
+ this.doctorCode = doctorCode;
|
|
|
}
|
|
|
- public String getRecordId() {
|
|
|
- return recordId;
|
|
|
+ public String getDoctorName() {
|
|
|
+ return doctorName;
|
|
|
}
|
|
|
- public void setRecordId(String recordId) {
|
|
|
- this.recordId = recordId;
|
|
|
+ public void setDoctorName(String doctorName) {
|
|
|
+ this.doctorName = doctorName;
|
|
|
+ }
|
|
|
+ public String getInquiryCode() {
|
|
|
+ return inquiryCode;
|
|
|
+ }
|
|
|
+ public void setInquiryCode(String inquiryCode) {
|
|
|
+ this.inquiryCode = inquiryCode;
|
|
|
}
|
|
|
public String getPatientId() {
|
|
|
return patientId;
|
|
@@ -64,18 +94,18 @@ public class InputInfo implements Serializable{
|
|
|
public void setPatientId(String patientId) {
|
|
|
this.patientId = patientId;
|
|
|
}
|
|
|
- public String getAge() {
|
|
|
- return age;
|
|
|
- }
|
|
|
- public void setAge(String age) {
|
|
|
- this.age = age;
|
|
|
- }
|
|
|
public String getSexType() {
|
|
|
return sexType;
|
|
|
}
|
|
|
public void setSexType(String sexType) {
|
|
|
this.sexType = sexType;
|
|
|
}
|
|
|
+ public String getDiseaseName() {
|
|
|
+ return diseaseName;
|
|
|
+ }
|
|
|
+ public void setDiseaseName(String diseaseName) {
|
|
|
+ this.diseaseName = diseaseName;
|
|
|
+ }
|
|
|
public String getParamIn() {
|
|
|
return paramIn;
|
|
|
}
|
|
@@ -88,12 +118,10 @@ public class InputInfo implements Serializable{
|
|
|
public void setParamOut(String paramOut) {
|
|
|
this.paramOut = paramOut;
|
|
|
}
|
|
|
-
|
|
|
-
|
|
|
- public Date getTransTime() {
|
|
|
+ public String getTransTime() {
|
|
|
return transTime;
|
|
|
}
|
|
|
- public void setTransTime(Date transTime) {
|
|
|
+ public void setTransTime(String transTime) {
|
|
|
this.transTime = transTime;
|
|
|
}
|
|
|
public String getRemark() {
|