TASK:获取用户id信息做分页;订阅计划添加国家或地区字段

This commit is contained in:
2026-01-06 09:56:21 +08:00
parent 501032ef17
commit 3beb27e491
7 changed files with 58 additions and 22 deletions

View File

@@ -179,8 +179,9 @@ public class ConvenientInquiryController {
@Operation(summary = "获取所有用户id")
@GetMapping("/getAllUserId")
public Response<List<Map<String, Object>>> getAllUsrIdList() {
return Response.success(convenientInquiryService.getAllUserIdList());
public Response<IPage<Map<String, Object>>> getAllUserIdList(@Parameter(description = "page") @RequestParam Integer page,
@Parameter(description = "size") @RequestParam Integer size) {
return Response.success(convenientInquiryService.getAllUserIdList(page, size));
}
@Operation(summary = "获取所有交易信息")