初始化
parent
ce030664af
commit
2dd191f6a7
|
@ -6,7 +6,7 @@ import java.util.Date;
|
||||||
/**
|
/**
|
||||||
* 医生注册信息表
|
* 医生注册信息表
|
||||||
*/
|
*/
|
||||||
public class RegistrationInformation {
|
public class RegistrationInformation {
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 医生注册信息id
|
* 医生注册信息id
|
||||||
|
@ -49,11 +49,6 @@ public class RegistrationInformation {
|
||||||
*/
|
*/
|
||||||
private String areaExpertise;
|
private String areaExpertise;
|
||||||
|
|
||||||
/**
|
|
||||||
* 注册时间
|
|
||||||
*/
|
|
||||||
private Date registrationTime;
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* 服务患者次数
|
* 服务患者次数
|
||||||
*/
|
*/
|
||||||
|
@ -85,25 +80,7 @@ public class RegistrationInformation {
|
||||||
public RegistrationInformation() {
|
public RegistrationInformation() {
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String toString() {
|
|
||||||
return "RegistrationInformation{" +
|
|
||||||
"registrationInformationId=" + registrationInformationId +
|
|
||||||
", userId=" + userId +
|
|
||||||
", realName='" + realName + '\'' +
|
|
||||||
", affiliatedHospital='" + affiliatedHospital + '\'' +
|
|
||||||
", medicalDepartmentId=" + medicalDepartmentId +
|
|
||||||
", professionalTitleDoctorId=" + professionalTitleDoctorId +
|
|
||||||
", personalResume='" + personalResume + '\'' +
|
|
||||||
", areaExpertise='" + areaExpertise + '\'' +
|
|
||||||
", registrationTime=" + registrationTime +
|
|
||||||
", numberPatientsServed=" + numberPatientsServed +
|
|
||||||
", consultingPrice=" + consultingPrice +
|
|
||||||
", praise=" + praise +
|
|
||||||
", registrationInformationExamineStatus=" + registrationInformationExamineStatus +
|
|
||||||
", registrationInformationMedicStatus=" + registrationInformationMedicStatus +
|
|
||||||
'}';
|
|
||||||
}
|
|
||||||
|
|
||||||
public Long getRegistrationInformationId() {
|
public Long getRegistrationInformationId() {
|
||||||
return registrationInformationId;
|
return registrationInformationId;
|
||||||
|
@ -169,12 +146,20 @@ public class RegistrationInformation {
|
||||||
this.areaExpertise = areaExpertise;
|
this.areaExpertise = areaExpertise;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Date getRegistrationTime() {
|
public RegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Long numberPatientsServed, BigDecimal consultingPrice, Long praise, Long registrationInformationExamineStatus, Long registrationInformationMedicStatus) {
|
||||||
return registrationTime;
|
this.registrationInformationId = registrationInformationId;
|
||||||
}
|
this.userId = userId;
|
||||||
|
this.realName = realName;
|
||||||
public void setRegistrationTime(Date registrationTime) {
|
this.affiliatedHospital = affiliatedHospital;
|
||||||
this.registrationTime = registrationTime;
|
this.medicalDepartmentId = medicalDepartmentId;
|
||||||
|
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||||
|
this.personalResume = personalResume;
|
||||||
|
this.areaExpertise = areaExpertise;
|
||||||
|
this.numberPatientsServed = numberPatientsServed;
|
||||||
|
this.consultingPrice = consultingPrice;
|
||||||
|
this.praise = praise;
|
||||||
|
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
|
||||||
|
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
public Long getNumberPatientsServed() {
|
public Long getNumberPatientsServed() {
|
||||||
|
@ -217,20 +202,22 @@ public class RegistrationInformation {
|
||||||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||||
}
|
}
|
||||||
|
|
||||||
public RegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, Long numberPatientsServed, BigDecimal consultingPrice, Long praise, Long registrationInformationExamineStatus, Long registrationInformationMedicStatus) {
|
@Override
|
||||||
this.registrationInformationId = registrationInformationId;
|
public String toString() {
|
||||||
this.userId = userId;
|
return "RegistrationInformation{" +
|
||||||
this.realName = realName;
|
"registrationInformationId=" + registrationInformationId +
|
||||||
this.affiliatedHospital = affiliatedHospital;
|
", userId=" + userId +
|
||||||
this.medicalDepartmentId = medicalDepartmentId;
|
", realName='" + realName + '\'' +
|
||||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
", affiliatedHospital='" + affiliatedHospital + '\'' +
|
||||||
this.personalResume = personalResume;
|
", medicalDepartmentId=" + medicalDepartmentId +
|
||||||
this.areaExpertise = areaExpertise;
|
", professionalTitleDoctorId=" + professionalTitleDoctorId +
|
||||||
this.registrationTime = registrationTime;
|
", personalResume='" + personalResume + '\'' +
|
||||||
this.numberPatientsServed = numberPatientsServed;
|
", areaExpertise='" + areaExpertise + '\'' +
|
||||||
this.consultingPrice = consultingPrice;
|
", numberPatientsServed=" + numberPatientsServed +
|
||||||
this.praise = praise;
|
", consultingPrice=" + consultingPrice +
|
||||||
this.registrationInformationExamineStatus = registrationInformationExamineStatus;
|
", praise=" + praise +
|
||||||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
", registrationInformationExamineStatus=" + registrationInformationExamineStatus +
|
||||||
|
", registrationInformationMedicStatus=" + registrationInformationMedicStatus +
|
||||||
|
'}';
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue