|
@@ -250,9 +250,7 @@ public class UserServiceImpl implements UserService {
|
|
|
if (StringUtils.isEmpty(value)){
|
|
|
throw new ServiceException(ResultStatus.USER_AUTH_UNIQID_OR_CODE_ISNULL);
|
|
|
}
|
|
|
- UserAuthDto dto = JSONObject.parseObject(value,UserAuthDto.class);
|
|
|
- dto.setMessage(key);
|
|
|
- return dto;
|
|
|
+ return JSONObject.parseObject(value,UserAuthDto.class);
|
|
|
}
|
|
|
|
|
|
|