|
|
|
@ -443,6 +443,9 @@ public class LoginController extends BaseController {
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "9.4.确认身份接口:确定身份以及判断是否二维码过期等", notes = "确认身份接口:确定身份以及判断是否二维码过期等")
|
|
|
|
|
@PostMapping(value = "/scanOrConfirm")
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "token", value = "扫码获得的code", required = true),
|
|
|
|
|
@ApiImplicitParam(name = "userId", value = "用户id", required = true),
|
|
|
|
|
@ApiImplicitParam(name = "type", value = "type 1-扫码 2-确认", required = true)})
|
|
|
|
|
public Result<Void> scanOrConfirm(@RequestParam("token") String token,
|
|
|
|
|
@RequestParam("userId") String userId,
|
|
|
|
|
@RequestParam("type") Integer type) {
|
|
|
|
|