修改类型为Long
parent
ca908b9fd9
commit
ed4284a8db
|
@ -11,13 +11,13 @@ public class RegistrationInformation {
|
|||
/**
|
||||
* 医生注册信息id
|
||||
*/
|
||||
private Integer registrationInformationId;
|
||||
private Long registrationInformationId;
|
||||
|
||||
|
||||
/**
|
||||
* 用户id
|
||||
*/
|
||||
private Integer userId;
|
||||
private Long userId;
|
||||
|
||||
/**
|
||||
* 真实姓名
|
||||
|
@ -32,12 +32,12 @@ public class RegistrationInformation {
|
|||
/**
|
||||
* 医生科室id
|
||||
*/
|
||||
private Integer medicalDepartmentId;
|
||||
private Long medicalDepartmentId;
|
||||
|
||||
/**
|
||||
* 医生职称id
|
||||
*/
|
||||
private Integer professionalTitleDoctorId;
|
||||
private Long professionalTitleDoctorId;
|
||||
|
||||
/**
|
||||
* 个人简历
|
||||
|
@ -57,7 +57,7 @@ public class RegistrationInformation {
|
|||
/**
|
||||
* 服务患者次数
|
||||
*/
|
||||
private String numberPatientsServed;
|
||||
private Integer numberPatientsServed;
|
||||
|
||||
/**
|
||||
* 咨询价格
|
||||
|
@ -85,14 +85,42 @@ public class RegistrationInformation {
|
|||
public RegistrationInformation() {
|
||||
}
|
||||
|
||||
public Integer getRegistrationInformationId() {
|
||||
@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() {
|
||||
return registrationInformationId;
|
||||
}
|
||||
|
||||
public void setRegistrationInformationId(Integer registrationInformationId) {
|
||||
public void setRegistrationInformationId(Long registrationInformationId) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
}
|
||||
|
||||
public Long getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Long userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public String getRealName() {
|
||||
return realName;
|
||||
}
|
||||
|
@ -109,19 +137,19 @@ public class RegistrationInformation {
|
|||
this.affiliatedHospital = affiliatedHospital;
|
||||
}
|
||||
|
||||
public Integer getMedicalDepartmentId() {
|
||||
public Long getMedicalDepartmentId() {
|
||||
return medicalDepartmentId;
|
||||
}
|
||||
|
||||
public void setMedicalDepartmentId(Integer medicalDepartmentId) {
|
||||
public void setMedicalDepartmentId(Long medicalDepartmentId) {
|
||||
this.medicalDepartmentId = medicalDepartmentId;
|
||||
}
|
||||
|
||||
public Integer getProfessionalTitleDoctorId() {
|
||||
public Long getProfessionalTitleDoctorId() {
|
||||
return professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
public void setProfessionalTitleDoctorId(Integer professionalTitleDoctorId) {
|
||||
public void setProfessionalTitleDoctorId(Long professionalTitleDoctorId) {
|
||||
this.professionalTitleDoctorId = professionalTitleDoctorId;
|
||||
}
|
||||
|
||||
|
@ -149,11 +177,11 @@ public class RegistrationInformation {
|
|||
this.registrationTime = registrationTime;
|
||||
}
|
||||
|
||||
public String getNumberPatientsServed() {
|
||||
public Integer getNumberPatientsServed() {
|
||||
return numberPatientsServed;
|
||||
}
|
||||
|
||||
public void setNumberPatientsServed(String numberPatientsServed) {
|
||||
public void setNumberPatientsServed(Integer numberPatientsServed) {
|
||||
this.numberPatientsServed = numberPatientsServed;
|
||||
}
|
||||
|
||||
|
@ -189,15 +217,7 @@ public class RegistrationInformation {
|
|||
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
|
||||
}
|
||||
|
||||
public Integer getUserId() {
|
||||
return userId;
|
||||
}
|
||||
|
||||
public void setUserId(Integer userId) {
|
||||
this.userId = userId;
|
||||
}
|
||||
|
||||
public RegistrationInformation(Integer registrationInformationId, Integer userId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus) {
|
||||
public RegistrationInformation(Long registrationInformationId, Long userId, String realName, String affiliatedHospital, Long medicalDepartmentId, Long professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, Integer numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus) {
|
||||
this.registrationInformationId = registrationInformationId;
|
||||
this.userId = userId;
|
||||
this.realName = realName;
|
||||
|
|
Loading…
Reference in New Issue