|
@ -26,11 +26,11 @@ public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
private String solutionUserId;
|
|
private String solutionUserId;
|
|
private String solutionUserName;
|
|
private String solutionUserName;
|
|
private String profileId;
|
|
private String profileId;
|
|
private String examType;
|
|
|
|
|
|
private Integer examType;
|
|
private String examDept;
|
|
private String examDept;
|
|
private String examItemName;
|
|
private String examItemName;
|
|
private String patientName;
|
|
private String patientName;
|
|
private String patientAge;
|
|
|
|
|
|
private Integer patientAge;
|
|
private String patientSex;
|
|
private String patientSex;
|
|
|
|
|
|
@Basic
|
|
@Basic
|
|
@ -167,11 +167,11 @@ public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
|
|
|
|
@Basic
|
|
@Basic
|
|
@Column(name = "exam_type", nullable = true, length = 2)
|
|
@Column(name = "exam_type", nullable = true, length = 2)
|
|
public String getExamType() {
|
|
|
|
|
|
public Integer getExamType() {
|
|
return examType;
|
|
return examType;
|
|
}
|
|
}
|
|
|
|
|
|
public void setExamType(String examType) {
|
|
|
|
|
|
public void setExamType(Integer examType) {
|
|
this.examType = examType;
|
|
this.examType = examType;
|
|
}
|
|
}
|
|
|
|
|
|
@ -207,11 +207,11 @@ public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
|
|
|
|
@Basic
|
|
@Basic
|
|
@Column(name = "patient_age", nullable = true, length = 4)
|
|
@Column(name = "patient_age", nullable = true, length = 4)
|
|
public String getPatientAge() {
|
|
|
|
|
|
public Integer getPatientAge() {
|
|
return patientAge;
|
|
return patientAge;
|
|
}
|
|
}
|
|
|
|
|
|
public void setPatientAge(String patientAge) {
|
|
|
|
|
|
public void setPatientAge(Integer patientAge) {
|
|
this.patientAge = patientAge;
|
|
this.patientAge = patientAge;
|
|
}
|
|
}
|
|
|
|
|