From 1948a5ff0581e7596249fb8d299559a17c977141 Mon Sep 17 00:00:00 2001 From: luohairen <3399054449@qq.com> Date: 星期四, 05 十二月 2024 17:08:16 +0800 Subject: [PATCH] 分角色展示项目计划,实现不同角色的功能 --- business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java | 5 +++++ 1 files changed, 5 insertions(+), 0 deletions(-) diff --git a/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java b/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java index 4f4652f..099bf2d 100644 --- a/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java +++ b/business/src/main/java/com/ycl/controller/ProjectPlanExamineRecordController.java @@ -6,6 +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.service.ProjectPlanExamineRecordService; import io.swagger.annotations.Api; import io.swagger.annotations.ApiOperation; @@ -108,4 +109,8 @@ return projectPlanExamineRecordService.todoList(getUserId(),query); } + @PostMapping("/reply") + public Result reply(@RequestBody ProgressReportResponseVO form) { + return projectPlanExamineRecordService.reply(form); + } } -- Gitblit v1.8.0