|  |  | 
 |  |  |     @PostMapping("/page") | 
 |  |  |     @RequiresPermissions("business:applychagnedetail:query") | 
 |  |  |     public ApiResponse<PageData<ApplyChagneDetail>> findPage (@RequestBody PageWrap<ApplyDetailPageDTO> pageWrap) { | 
 |  |  |         return ApiResponse.success(applyChagneDetailService.findPage(pageWrap)); | 
 |  |  |         return ApiResponse.success(applyChagneDetailService.findPageForCompany(pageWrap)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("列表查询") | 
 |  |  |     @PostMapping("/list") | 
 |  |  |     @RequiresPermissions("business:applychagnedetail:query") | 
 |  |  |     public ApiResponse<List<ApplyChagneDetail>> findList (@RequestBody ApplyDetailPageDTO applyDetailPageDTO) { | 
 |  |  |         return ApiResponse.success(applyChagneDetailService.findListForCompany(applyDetailPageDTO)); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("导出Excel") | 
 |  |  |     @PostMapping("/exportExcel") | 
 |  |  |     @RequiresPermissions("business:applychagnedetail:exportExcel") | 
 |  |  |     public void exportExcel (@RequestBody PageWrap<ApplyDetailPageDTO> pageWrap, HttpServletResponse response) { | 
 |  |  |         ExcelExporter.build(ApplyChagneDetail.class).export(applyChagneDetailService.findPage(pageWrap).getRecords(), "加减保换厂申请明细信息表", response); | 
 |  |  |         ExcelExporter.build(ApplyChagneDetail.class).export(applyChagneDetailService.findPageForCompany(pageWrap).getRecords(), "加减保换厂申请明细信息表", response); | 
 |  |  |     } | 
 |  |  |  | 
 |  |  |     @ApiOperation("根据ID查询") |