fix:修复

This commit is contained in:
zhangwenzan 2025-05-26 14:51:24 +08:00
parent a8d14036b3
commit b1921d92e0
1 changed files with 3 additions and 2 deletions

View File

@ -73,9 +73,10 @@ public class CrmCustomerController {
@PostMapping("/queryPageList") @PostMapping("/queryPageList")
@ApiOperation("查询列表页数据") @ApiOperation("查询列表页数据")
@ParamAspect
public Result<BasePage<Map<String, Object>>> queryPageList(@RequestBody CrmSearchBO search) { public Result<BasePage<Map<String, Object>>> queryPageList(@RequestBody CrmSearchBO search) {
return R.ok(); search.setPageType(1);
BasePage<Map<String, Object>> mapBasePage = crmCustomerService.queryPageList(search);
return R.ok(mapBasePage);
} }
@PostMapping("/add") @PostMapping("/add")