|
@ -33,6 +33,8 @@ public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
|
private Integer patientAge;
|
|
|
private String patientSex;
|
|
|
|
|
|
private String inspector;
|
|
|
|
|
|
@Basic
|
|
|
@Column(name = "apply_org", nullable = true, length = 32)
|
|
|
public String getApplyOrg() {
|
|
@ -225,6 +227,13 @@ public class AssistanceApplyModel extends IntegerIdentityEntity {
|
|
|
this.patientSex = patientSex;
|
|
|
}
|
|
|
|
|
|
@Basic
|
|
|
@Column(name = "inspector", nullable = true, length = 255)
|
|
|
public String getInspector() {
|
|
|
return inspector;
|
|
|
}
|
|
|
|
|
|
|
|
|
public void setInspector(String inspector) {
|
|
|
this.inspector = inspector;
|
|
|
}
|
|
|
}
|