| | |
| | | |
| | | /** |
| | | * @author 江蹄蹄 |
| | | * @date 2024/01/15 15:07 |
| | | * @date 2024/01/16 10:03 |
| | | */ |
| | | @Api(tags = "企业可用保险方案关联表") |
| | | @RestController |
| | |
| | | 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") |