From 29fdcdb1c3870bb34fd9913a9cc3624d5dd13952 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期四, 26 十二月 2024 18:26:32 +0800
Subject: [PATCH] 转办的部分实现
---
business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java | 8 ++++----
1 files changed, 4 insertions(+), 4 deletions(-)
diff --git a/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java b/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java
index 099bf2d..5cd3961 100644
--- a/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java
+++ b/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java
@@ -6,7 +6,7 @@
import com.ycl.common.group.Update;
import com.ycl.domain.form.ProjectPlanExamineRecordForm;
import com.ycl.domain.query.ProjectPlanExamineRecordQuery;
-import com.ycl.domain.vo.ProgressReportResponseVO;
+import com.ycl.domain.form.ProgressReportResponseForm;
import com.ycl.service.ProjectPlanExamineRecordService;
import io.swagger.annotations.Api;
import io.swagger.annotations.ApiOperation;
@@ -83,12 +83,12 @@
}
@GetMapping("/departmentApproval/{id}")
- public Result departmentApproval(@PathVariable("id") Integer projectPlanRecordId) {
+ public Result departmentApproval(@PathVariable("id") Long projectPlanRecordId) {
return projectPlanExamineRecordService.departmentApproval(projectPlanRecordId);
}
@GetMapping("/planLog/{id}")
- public Result planLog(@PathVariable("id") Integer projectPlanRecordId) {
+ public Result planLog(@PathVariable("id") Long projectPlanRecordId) {
return projectPlanExamineRecordService.planLog(projectPlanRecordId);
}
@@ -110,7 +110,7 @@
}
@PostMapping("/reply")
- public Result reply(@RequestBody ProgressReportResponseVO form) {
+ public Result reply(@RequestBody ProgressReportResponseForm form) {
return projectPlanExamineRecordService.reply(form);
}
}
--
Gitblit v1.8.0