| | |
| | | |
| | | /** |
| | | * @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 { |
| | |
| | | @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查询") |