|  |  |  | 
|---|
|  |  |  | 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("获取缓存申请签章地址") | 
|---|
|  |  |  |  | 
|---|
|  |  |  | @ApiOperation("获取换厂申请签章地址") | 
|---|
|  |  |  | @PostMapping("/getChangeUnitSignLink") | 
|---|
|  |  |  | @RequiresPermissions("business:applychange:sign") | 
|---|
|  |  |  | public ApiResponse<String> getChangeUnitSignLink (@RequestBody ApplyChange model, HttpServletResponse response) { | 
|---|