|
@@ -35,7 +35,7 @@ public class UserInfo implements Serializable{
|
|
|
|
|
|
private Long studentId;
|
|
|
|
|
|
- private String photoPath;
|
|
|
+ private String identityNumber;
|
|
|
|
|
|
private List<UserRole> userRoles;
|
|
|
|
|
@@ -139,15 +139,15 @@ public class UserInfo implements Serializable{
|
|
|
this.studentId = studentId;
|
|
|
}
|
|
|
|
|
|
- public String getPhotoPath() {
|
|
|
- return photoPath;
|
|
|
+ public String getIdentityNumber() {
|
|
|
+ return identityNumber;
|
|
|
}
|
|
|
|
|
|
- public void setPhotoPath(String photoPath) {
|
|
|
- this.photoPath = photoPath;
|
|
|
+ public void setIdentityNumber(String identityNumber) {
|
|
|
+ this.identityNumber = identityNumber;
|
|
|
}
|
|
|
|
|
|
- public List<UserRole> getUserRoles() {
|
|
|
+ public List<UserRole> getUserRoles() {
|
|
|
return userRoles;
|
|
|
}
|
|
|
|