| | |
| | | return calculateReportService.page(query); |
| | | } |
| | | |
| | | @GetMapping("/backfill/money") |
| | | @PostMapping("/backfill/money") |
| | | @ApiOperation(value = "回填扣款金额", notes = "回填扣款金额") |
| | | @PreAuthorize("@ss.hasPermi('system:calculate:report:backfill')") |
| | | public Result backfill(@Validated @RequestBody CalculateReportBackfillForm form) { |
| | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | @PreAuthorize("@ss.hasPermi('system:calculate:report:detail')") |
| | | public Result detail(@PathVariable("id") String id) { |
| | | public Result detail(@PathVariable("id") Long id) { |
| | | return calculateReportService.detail(id); |
| | | } |
| | | |