From 95f0a8b4d82a859f2018c9d77e1a8a3a38b2d523 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期二, 23 七月 2024 17:06:50 +0800
Subject: [PATCH] 报备记录、编号工具方法
---
ycl-server/src/main/java/com/ycl/platform/controller/ReportController.java | 6 +++---
1 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/ycl-server/src/main/java/com/ycl/platform/controller/ReportController.java b/ycl-server/src/main/java/com/ycl/platform/controller/ReportController.java
index 2f07121..4f85e46 100644
--- a/ycl-server/src/main/java/com/ycl/platform/controller/ReportController.java
+++ b/ycl-server/src/main/java/com/ycl/platform/controller/ReportController.java
@@ -88,11 +88,11 @@
return reportService.all();
}
- @GetMapping("/examine/record")
+ @GetMapping("/auditing/record/{id}")
@ApiOperation(value = "瀹℃牳璁板綍", notes = "瀹℃牳璁板綍")
@PreAuthorize("@ss.hasPermi('system:report:record')")
- public Result examineRecord() {
- return reportService.examineRecord();
+ public Result auditingRecord(@PathVariable("id") Integer id) {
+ return reportService.auditingRecord(id);
}
@PostMapping("/auditing")
--
Gitblit v1.8.0