| | |
| | | } |
| | | @ApiOperation("导出加减保详情单") |
| | | @PostMapping("/exportJiajianBaoExcel") |
| | | @RequiresPermissions("business:insuranceapply:exportExcel") |
| | | @RequiresPermissions("business:applychange:exportExcel") |
| | | public void exportJiajianBaoExcel (@RequestBody ApplyChange model, HttpServletResponse response) { |
| | | ExcelExporter.build(ApplyChange.class).exportJiajianBaoExcel(applyChangeService.exportJiajianBaoExcel(model), response); |
| | | } |
| | | @ApiOperation("导出换厂申请详情单") |
| | | @PostMapping("/exportChangeUnitExcel") |
| | | @RequiresPermissions("business:insuranceapply:exportExcel") |
| | | @RequiresPermissions("business:applychange:exportExcel") |
| | | public void exportChangeUnitExcel (@RequestBody ApplyChange model, HttpServletResponse response) { |
| | | ExcelExporter.build(ApplyChange.class).exportChangeUnitExcel(applyChangeService.exportChangeUnitExcel(model), response); |
| | | } |
| | | @ApiOperation("获取加减保签章地址") |
| | | @PostMapping("/getJiajianBaoSignLink") |
| | | @RequiresPermissions("business:applychange:sign") |
| | | public ApiResponse<String> getSignLinkJiajiabao (@RequestBody ApplyChange model, HttpServletResponse response) { |
| | | return ApiResponse.success( applyChangeService.getSignLinkJiajiabao(model)); |
| | | } |
| | | @ApiOperation("获取缓存申请签章地址") |
| | | @PostMapping("/getChangeUnitSignLink") |
| | | @RequiresPermissions("business:applychange:sign") |
| | | public ApiResponse<String> getChangeUnitSignLink (@RequestBody ApplyChange model, HttpServletResponse response) { |
| | | return ApiResponse.success( applyChangeService.getSignLinkChangeUnit(model)); |
| | | } |
| | | |
| | | @ApiOperation("根据ID查询") |
| | | @GetMapping("/{id}") |