| | |
| | | return ApiResponse.success(applyChangeService.create(applyChange)); |
| | | } |
| | | @PreventRepeat |
| | | @ApiOperation("平台退回投保") |
| | | @ApiOperation("平台退回申请") |
| | | @PostMapping("/back") |
| | | @RequiresPermissions("business:applychange:back") |
| | | public ApiResponse back(@RequestBody ApplyChange applyChange) { |
| | |
| | | public ApiResponse<ApplyChange> findById(@PathVariable Integer id) { |
| | | return ApiResponse.success(applyChangeService.findDetail(id)); |
| | | } |
| | | |
| | | @ApiOperation("查询月度统计数据") |
| | | @PostMapping("/monthList") |
| | | @RequiresPermissions("business:applychange:query") |
| | | public ApiResponse<List<ApplyChange>> findPage (@RequestBody ApplyChange pageWrap) { |
| | | return ApiResponse.success(applyChangeService.monthTotalList(pageWrap)); |
| | | } |
| | | } |