|  |  |  | 
|---|
|  |  |  |  | 
|---|
|  |  |  | /** | 
|---|
|  |  |  | * @author 江蹄蹄 | 
|---|
|  |  |  | * @date 2024/01/15 11:15 | 
|---|
|  |  |  | * @date 2024/10/28 19:16 | 
|---|
|  |  |  | */ | 
|---|
|  |  |  | @Api(tags = "保险方案信息表(基表)") | 
|---|
|  |  |  | @Api(tags = "保险方案信息表") | 
|---|
|  |  |  | @RestController | 
|---|
|  |  |  | @RequestMapping("/business/solutionsBase") | 
|---|
|  |  |  | public class SolutionsBaseController extends BaseController { | 
|---|
|  |  |  | 
|---|
|  |  |  | @PostMapping("/exportExcel") | 
|---|
|  |  |  | @RequiresPermissions("business:solutionsbase:exportExcel") | 
|---|
|  |  |  | public void exportExcel (@RequestBody PageWrap<SolutionsBase> pageWrap, HttpServletResponse response) { | 
|---|
|  |  |  | ExcelExporter.build(SolutionsBase.class).export(solutionsBaseService.findPage(pageWrap).getRecords(), "保险方案信息表(基表)", response); | 
|---|
|  |  |  | ExcelExporter.build(SolutionsBase.class).export(solutionsBaseService.findPage(pageWrap).getRecords(), "保险方案信息表", response); | 
|---|
|  |  |  | } | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("根据ID查询") | 
|---|