新增用户id:userId

master
MKing 2023-10-24 15:57:30 +08:00
parent b7949d46cb
commit 8057eebaa3
2 changed files with 45 additions and 2 deletions

View File

@ -13,6 +13,12 @@ public class RegistrationInformation {
*/
private Integer registrationInformationId;
/**
* id
*/
private Integer userId;
/**
*
*/
@ -183,8 +189,17 @@ public class RegistrationInformation {
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
}
public RegistrationInformation(Integer registrationInformationId, 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 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) {
this.registrationInformationId = registrationInformationId;
this.userId = userId;
this.realName = realName;
this.affiliatedHospital = affiliatedHospital;
this.medicalDepartmentId = medicalDepartmentId;

View File

@ -11,6 +11,11 @@ public class ResponseRegistrationInformation {
*/
private Integer registrationInformationId;
/**
* id
*/
private Integer userId;
/**
*
*/
@ -82,6 +87,11 @@ public class ResponseRegistrationInformation {
*/
private Integer professionalTitleDoctorName;
/**
*
*/
private String username;
/**
* gettersetter
*/
@ -208,8 +218,25 @@ public class ResponseRegistrationInformation {
this.professionalTitleDoctorName = professionalTitleDoctorName;
}
public ResponseRegistrationInformation(Integer registrationInformationId, String realName, String affiliatedHospital, Integer medicalDepartmentId, Integer professionalTitleDoctorId, String personalResume, String areaExpertise, Date registrationTime, String numberPatientsServed, BigDecimal consultingPrice, Integer praise, Integer registrationInformationExamineStatus, Integer registrationInformationMedicStatus, String name, Integer professionalTitleDoctorName) {
public Integer getUserId() {
return userId;
}
public void setUserId(Integer userId) {
this.userId = userId;
}
public String getUsername() {
return username;
}
public void setUsername(String username) {
this.username = username;
}
public ResponseRegistrationInformation(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, String name, Integer professionalTitleDoctorName, String username) {
this.registrationInformationId = registrationInformationId;
this.userId = userId;
this.realName = realName;
this.affiliatedHospital = affiliatedHospital;
this.medicalDepartmentId = medicalDepartmentId;
@ -224,5 +251,6 @@ public class ResponseRegistrationInformation {
this.registrationInformationMedicStatus = registrationInformationMedicStatus;
this.name = name;
this.professionalTitleDoctorName = professionalTitleDoctorName;
this.username = username;
}
}