|
@ -77,6 +77,8 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntityWithOperator
|
|
|
private String signCertificate;//签约证明
|
|
|
@Column(name = "health_status_code")
|
|
|
private String healthStatusCode;//健康状况编码
|
|
|
@Column(name = "disease_code")
|
|
|
private String diseaseCode;//签约疾病编码,多个使用逗号隔开
|
|
|
|
|
|
|
|
|
public String getSaasId() {
|
|
@ -256,4 +258,12 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntityWithOperator
|
|
|
public void setHealthStatusCode(String healthStatusCode) {
|
|
|
this.healthStatusCode = healthStatusCode;
|
|
|
}
|
|
|
|
|
|
public String getDiseaseCode() {
|
|
|
return diseaseCode;
|
|
|
}
|
|
|
|
|
|
public void setDiseaseCode(String diseaseCode) {
|
|
|
this.diseaseCode = diseaseCode;
|
|
|
}
|
|
|
}
|