|
@@ -206,9 +206,9 @@ public class AuthServiceImpl implements AuthService {
|
|
|
String userType = user.getUserType();
|
|
|
String key = null;
|
|
|
if (UserType.COMMON.getCode().equals(userType)) {
|
|
|
- key = StringUtils.join("U_", userType, "_", rootOrgId, "_", user.getUserId());
|
|
|
+ key = StringUtil.join("U_", userType, "_", rootOrgId, "_", user.getUserId());
|
|
|
} else if (UserType.STUDENT.getCode().equals(userType)) {
|
|
|
- key = StringUtils.join("U_", userType, "_", rootOrgId, "_", user.getStudentId());
|
|
|
+ key = StringUtil.join("U_", userType, "_", rootOrgId, "_", user.getStudentId());
|
|
|
}
|
|
|
return key;
|
|
|
}
|