| | |
| | | package com.ycl.platform.controller; |
| | | |
| | | import com.ycl.platform.domain.form.CalculateReportBackfillForm; |
| | | import com.ycl.system.domain.group.Update; |
| | | import com.ycl.system.domain.group.Add; |
| | | import org.springframework.security.access.prepost.PreAuthorize; |
| | |
| | | return calculateReportService.page(query); |
| | | } |
| | | |
| | | @GetMapping("/backfill/money") |
| | | @ApiOperation(value = "回填扣款金额", notes = "回填扣款金额") |
| | | @PreAuthorize("@ss.hasPermi('system:calculate:report:backfill')") |
| | | public Result backfill(@Validated @RequestBody CalculateReportBackfillForm form) { |
| | | return calculateReportService.backfill(form); |
| | | } |
| | | |
| | | @GetMapping("/{id}") |
| | | @ApiOperation(value = "详情", notes = "详情") |
| | | @PreAuthorize("@ss.hasPermi('system:calculate:report:detail')") |