单点登录

This commit is contained in:
baozhipeng
2022-04-07 12:24:14 +08:00
parent 8034238ee8
commit 5c66d75392
@@ -643,4 +643,12 @@ public class LoginController {
//String string = redisUtil.get("_verification:_phone:" + phone).toString();
return Result.OK();
}
@ApiOperation(value = "单点登录")
@PostMapping(value = "/singleSignON")
public Result<?> singleSignON(@RequestParam(name="code") String code) {
Result<JSONObject> result = new Result<>();
return result;
}
}