|
@ -49,6 +49,8 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntityWithOperator
|
|
|
private String medicalRecordsCode;//住院病历(wlyy_patient_medical_records_rehabilitation 的code)
|
|
|
@Column(name = "advice_content")
|
|
|
private String adviceContent;//康复建议(wlyy_rehabilitation_advice 的content)
|
|
|
@Column(name = "team_code")
|
|
|
private Integer teamCode;//专科医生签约团队
|
|
|
|
|
|
@Column(name = "saas_id")
|
|
|
public String getSaasId() {
|
|
@ -192,4 +194,13 @@ public class PatientRehabilitationPlanDO extends UuidIdentityEntityWithOperator
|
|
|
public void setMedicalRecordsCode(String medicalRecordsCode) {
|
|
|
this.medicalRecordsCode = medicalRecordsCode;
|
|
|
}
|
|
|
|
|
|
@Column(name = "team_code")
|
|
|
public Integer getTeamCode() {
|
|
|
return teamCode;
|
|
|
}
|
|
|
|
|
|
public void setTeamCode(Integer teamCode) {
|
|
|
this.teamCode = teamCode;
|
|
|
}
|
|
|
}
|