|  |  |  | 
|---|
|  |  |  | public ApiResponse<PageData<CompanySolution>> findPage (@RequestBody PageWrap<CompanySolution> pageWrap) { | 
|---|
|  |  |  | return ApiResponse.success(companySolutionService.findPage(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  | @ApiOperation("查询全部") | 
|---|
|  |  |  | @PostMapping("/list") | 
|---|
|  |  |  | @RequiresPermissions("business:companysolution:query") | 
|---|
|  |  |  | public ApiResponse<List<CompanySolution>> findPage (@RequestBody CompanySolution  pageWrap) { | 
|---|
|  |  |  | return ApiResponse.success(companySolutionService.findList(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("查询企业全部关联方案") | 
|---|
|  |  |  | @PostMapping("/listForCompany") | 
|---|
|  |  |  | @RequiresPermissions("business:companysolution:query") | 
|---|
|  |  |  | public ApiResponse<List<CompanySolution>> findListForCompany (@RequestBody CompanySolution  pageWrap) { | 
|---|
|  |  |  | return ApiResponse.success(companySolutionService.findListForCompany(pageWrap)); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("导出Excel") | 
|---|
|  |  |  | @PostMapping("/exportExcel") | 
|---|