|
@@ -182,7 +182,7 @@ public class OpenApiController {
|
|
|
@ApiResponses({@ApiResponse(code = 200, message = "用户信息", response = SysUser.class)})
|
|
|
@RequestMapping(value = "/login_before_xju_logic", method = RequestMethod.POST)
|
|
|
@Aac(auth = BOOL.FALSE)
|
|
|
- public Result loginBeforeXjuLogic(@ApiParam(value = "西交大登录之前逻辑", required = true) @RequestBody String account) throws UnsupportedEncodingException {
|
|
|
+ public Result loginBeforeXjuLogic(@ApiParam(value = "登录账号", required = true) @RequestBody String account) throws UnsupportedEncodingException {
|
|
|
Optional.ofNullable(account).orElseThrow(() -> ExceptionResultEnum.PARAMS_ERROR.exception("账号为空"));
|
|
|
String decodeJson = URLDecoder.decode(account, SystemConstant.CHARSET_NAME);
|
|
|
log.info("loginBeforeXjuLogic进来了,result:{}", decodeJson);
|