|
|
|
@ -559,8 +559,8 @@ public class MyController extends BaseController {
|
|
|
|
|
return Result.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "15.2 审核实名认证")
|
|
|
|
|
@PostMapping("/check/real/name")
|
|
|
|
|
@ApiOperation(value = "15.2 审核实名认证-废弃")
|
|
|
|
|
@PostMapping("/check/real/name-废弃")
|
|
|
|
|
public Result<Void> checkRealName(@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
|
@Validated @RequestBody UserRealNameCheckDto userRealNameCheckDto) {
|
|
|
|
|
userInfoService.checkRealName(authorization, userRealNameCheckDto);
|
|
|
|
@ -575,7 +575,7 @@ public class MyController extends BaseController {
|
|
|
|
|
return Result.success();
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "15.4 获取实名认证详情")
|
|
|
|
|
@ApiOperation(value = "15.4 获取实名认证详情-废弃")
|
|
|
|
|
@GetMapping("/get/real/name/{id}")
|
|
|
|
|
public Result<UserRealName> getUserRealName(
|
|
|
|
|
@RequestHeader(value = "Authorization", required = true) String authorization,
|
|
|
|
@ -583,7 +583,7 @@ public class MyController extends BaseController {
|
|
|
|
|
return Result.success(userInfoService.getUserRealName(id));
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ApiOperation(value = "15.5 查询实名认证列表")
|
|
|
|
|
@ApiOperation(value = "15.5 查询实名认证列表-废弃")
|
|
|
|
|
@ApiImplicitParams({@ApiImplicitParam(name = "pageNum", value = "分页: 页码,以1开始", required = true),
|
|
|
|
|
@ApiImplicitParam(name = "pageSize", value = "分页: 每页数量", required = true)})
|
|
|
|
|
@GetMapping("/real/name/{pageNum}/{pageSize}")
|
|
|
|
|