|  |  | 
 |  |  |         return ApiResponse.success(companySolutionService.findPage(pageWrap)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("导出Excel") | 
 |  |  |     @PostMapping("/exportExcel") | 
 |  |  |     @RequiresPermissions("business:companysolution:exportExcel") | 
 |  |  | 
 |  |  |     public ApiResponse findById(@PathVariable Integer id) { | 
 |  |  |         return ApiResponse.success(companySolutionService.findById(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |  | 
 |  |  |     @ApiOperation("发起签署") | 
 |  |  |     @GetMapping("/getSignLink") | 
 |  |  |     @RequiresPermissions("business:companysolution:query") | 
 |  |  |     public ApiResponse<String> getSignLink (@RequestParam Integer id) { | 
 |  |  |         return ApiResponse.success(companySolutionService.getCompanySolutionSignLink(id)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  | } |