|
@ -62,6 +62,9 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntity implements S
|
|
|
|
|
|
private Long adminTeamCode;//家签行政团队Id
|
|
|
|
|
|
private String patientInfoCode;//自动下转关联code wlyy_rehabilitation_patient_info 的code
|
|
|
private String thirdOrgCode;//自动下转的医院code wlyy_rehabilitation_patient_info的 hospital_code
|
|
|
|
|
|
@Column(name = "is_verify")
|
|
|
public String getIsVerify() {
|
|
|
return isVerify;
|
|
@ -293,4 +296,22 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntity implements S
|
|
|
public void setAdminTeamCode(Long adminTeamCode) {
|
|
|
this.adminTeamCode = adminTeamCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "patient_info_code")
|
|
|
public String getPatientInfoCode() {
|
|
|
return patientInfoCode;
|
|
|
}
|
|
|
|
|
|
public void setPatientInfoCode(String patientInfoCode) {
|
|
|
this.patientInfoCode = patientInfoCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "third_org_code")
|
|
|
public String getThirdOrgCode() {
|
|
|
return thirdOrgCode;
|
|
|
}
|
|
|
|
|
|
public void setThirdOrgCode(String thirdOrgCode) {
|
|
|
this.thirdOrgCode = thirdOrgCode;
|
|
|
}
|
|
|
}
|