|  |  | 
 |  |  |     @ApiOperation("列表查询") | 
 |  |  |     @PostMapping("/list") | 
 |  |  |     @RequiresPermissions("business:solutions:query") | 
 |  |  |     public ApiResponse<List<Solutions>> findList (@RequestBody Solutions pageWrap) { | 
 |  |  |         return ApiResponse.success(solutionsService.findList(pageWrap)); | 
 |  |  |     public ApiResponse<List<Solutions>> findList (@RequestBody Solutions solutions) { | 
 |  |  |         return ApiResponse.success(solutionsService.findList(solutions)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | //    @ApiOperation("列表查询") | 
 |  |  | //    @PostMapping("/page") | 
 |  |  | //    public ApiResponse<List<Solutions>> findPage (@RequestBody Solutions solutions) { | 
 |  |  | //        return ApiResponse.success(solutionsService.findList(solutions)); | 
 |  |  | //    } | 
 |  |  |  | 
 |  |  |     @ApiOperation("导出Excel") | 
 |  |  |     @PostMapping("/exportExcel") | 
 |  |  | 
 |  |  |     public ApiResponse findById(@PathVariable Integer id) { | 
 |  |  |         return ApiResponse.success(solutionsService.findById(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |