Combat payment + e-commerce double system to play “earn” Java technology stack

v:ititit111222333

    @GetMapping("/listFunc")
    public Result listFunc(@Valid FuncListParam funcListParam, BasePageReq basePageReq){
        Page<FunctionVO> page = new Page<>(basePageReq.getPageNo(), basePageReq.getPageSize());
        IPage<FunctionVO> pages  =funcManagerService.listFunc(page,funcListParam);
        return Result.build(pages.getRecords(),pages.getTotal());
    }
Copy the code