|
@ -3,8 +3,10 @@ package com.yihu.jw.entity.specialist;
|
|
|
import com.fasterxml.jackson.annotation.JsonFormat;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntity;
|
|
|
import com.yihu.jw.entity.UuidIdentityEntityWithOperator;
|
|
|
import com.yihu.jw.entity.util.StringFStringEncryptConverter;
|
|
|
|
|
|
import javax.persistence.Column;
|
|
|
import javax.persistence.Convert;
|
|
|
import javax.persistence.Entity;
|
|
|
import javax.persistence.Table;
|
|
|
import java.io.Serializable;
|
|
@ -27,6 +29,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
private String doctor;//专科医生
|
|
|
|
|
|
@Column(name = "doctor_name")
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
private String doctorName;//专科医生姓名
|
|
|
|
|
|
@Column(name = "patient")
|
|
@ -57,12 +60,14 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
private String signDoctor;//签约医生
|
|
|
|
|
|
@Column(name = "sign_doctor_name")
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
private String signDoctorName;//签约医生
|
|
|
|
|
|
@Column(name = "health_doctor")
|
|
|
private String healthDoctor;//健康管理师
|
|
|
|
|
|
@Column(name = "health_doctor_name")
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
private String healthDoctorName;//健康管理师姓名
|
|
|
|
|
|
@Column(name = "sign_year")
|
|
@ -138,6 +143,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.patient = patient;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getPatientName() {
|
|
|
return patientName;
|
|
|
}
|
|
@ -170,6 +176,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.signDoctor = signDoctor;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getSignDoctorName() {
|
|
|
return signDoctorName;
|
|
|
}
|
|
@ -186,6 +193,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.healthDoctor = healthDoctor;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getHealthDoctorName() {
|
|
|
return healthDoctorName;
|
|
|
}
|
|
@ -226,6 +234,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.healthAssistant = healthAssistant;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getHealthAssistantName() {
|
|
|
return healthAssistantName;
|
|
|
}
|
|
@ -323,6 +332,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.createUser = createUser;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getCreateUserName() {
|
|
|
return createUserName;
|
|
|
}
|
|
@ -348,6 +358,7 @@ public class SpecialistPatientRelationDO extends UuidIdentityEntity implements S
|
|
|
this.updateUser = updateUser;
|
|
|
}
|
|
|
|
|
|
@Convert(converter = StringFStringEncryptConverter.class)
|
|
|
public String getUpdateUserName() {
|
|
|
return updateUserName;
|
|
|
}
|