|
|
|
@ -94,6 +94,10 @@ public class SysUser extends BaseEntity
|
|
|
|
|
/** 角色ID */
|
|
|
|
|
private Long roleId;
|
|
|
|
|
|
|
|
|
|
private Long doctorId;
|
|
|
|
|
|
|
|
|
|
private Long hospitalId;
|
|
|
|
|
|
|
|
|
|
public SysUser()
|
|
|
|
|
{
|
|
|
|
|
|
|
|
|
@ -314,6 +318,22 @@ public class SysUser extends BaseEntity
|
|
|
|
|
this.roleId = roleId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getDoctorId() {
|
|
|
|
|
return doctorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setDoctorId(Long doctorId) {
|
|
|
|
|
this.doctorId = doctorId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public Long getHospitalId() {
|
|
|
|
|
return hospitalId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
public void setHospitalId(Long hospitalId) {
|
|
|
|
|
this.hospitalId = hospitalId;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@Override
|
|
|
|
|
public String toString() {
|
|
|
|
|
return new ToStringBuilder(this,ToStringStyle.MULTI_LINE_STYLE)
|
|
|
|
|