|  |  | 
 |  |  |  | 
 |  |  | /** | 
 |  |  |  * @author 江蹄蹄 | 
 |  |  |  * @date 2024/01/15 11:15 | 
 |  |  |  * @date 2024/01/16 10:03 | 
 |  |  |  */ | 
 |  |  | @Api(tags = "保险方案信息表(历史版本)") | 
 |  |  | @Api(tags = "保险方案信息表") | 
 |  |  | @RestController | 
 |  |  | @RequestMapping("/business/solutions") | 
 |  |  | public class SolutionsController extends BaseController { | 
 |  |  | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("禁用启用") | 
 |  |  |     @PostMapping("/updateStatus") | 
 |  |  |     @RequiresPermissions("business:solutions:update") | 
 |  |  |     public ApiResponse updateStatus(@RequestBody Solutions solutions) { | 
 |  |  |         solutionsService.updateStatus(solutions); | 
 |  |  |         return ApiResponse.success(null); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("分页查询") | 
 |  |  |     @PostMapping("/page") | 
 |  |  |     @RequiresPermissions("business:solutions:query") | 
 |  |  | 
 |  |  |     @PostMapping("/exportExcel") | 
 |  |  |     @RequiresPermissions("business:solutions:exportExcel") | 
 |  |  |     public void exportExcel (@RequestBody PageWrap<Solutions> pageWrap, HttpServletResponse response) { | 
 |  |  |         ExcelExporter.build(Solutions.class).export(solutionsService.findPage(pageWrap).getRecords(), "保险方案信息表(历史版本)", response); | 
 |  |  |         ExcelExporter.build(Solutions.class).export(solutionsService.findPage(pageWrap).getRecords(), "保险方案信息表", response); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("根据ID查询") |