| | |
| | | @ApiOperation("根据ID查询") |
| | | @GetMapping("/{id}") |
| | | @RequiresPermissions("business:applychange:query") |
| | | public ApiResponse findById(@PathVariable Integer id) { |
| | | public ApiResponse<ApplyChange> findById(@PathVariable Integer id) { |
| | | return ApiResponse.success(applyChangeService.findDetail(id)); |
| | | } |
| | | |
| | |
| | | return ApiResponse.success("操作成功",applyChangeService.getChangeCountCyclePriceVO(applyChangeCyclePriceDTO)); |
| | | } |
| | | |
| | | @ApiOperation("投保确认书签章业务") |
| | | @GetMapping("/getChangeMemberListOnlineSignLink/{id}") |
| | | @RequiresPermissions("business:applychange:query") |
| | | public ApiResponse<String> getChangeMemberListOnlineSignLink(@PathVariable Integer id) { |
| | | return ApiResponse.success(applyChangeService.getChangeMemberListOnlineSignLink(id)); |
| | | } |
| | | |
| | | } |