From 586510e643625b09f08e7289d90c9d5df1a56304 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期五, 26 四月 2024 14:17:13 +0800
Subject: [PATCH] 字段调整

---
 ycl-server/src/main/java/com/ycl/platform/controller/CalculateReportController.java |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/CalculateReportController.java b/ycl-server/src/main/java/com/ycl/platform/controller/CalculateReportController.java
index 14c68e7..2473c04 100644
--- a/ycl-server/src/main/java/com/ycl/platform/controller/CalculateReportController.java
+++ b/ycl-server/src/main/java/com/ycl/platform/controller/CalculateReportController.java
@@ -59,7 +59,7 @@
         return calculateReportService.page(query);
     }
 
-    @GetMapping("/backfill/money")
+    @PostMapping("/backfill/money")
     @ApiOperation(value = "鍥炲~鎵f閲戦", notes = "鍥炲~鎵f閲戦")
     @PreAuthorize("@ss.hasPermi('system:calculate:report:backfill')")
     public Result backfill(@Validated @RequestBody CalculateReportBackfillForm form) {
@@ -69,7 +69,7 @@
     @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);
     }
 

--
Gitblit v1.8.0