From 23e187554324e1bdff896d7d18634711a7372755 Mon Sep 17 00:00:00 2001 From: fuliqi <fuliqi@qq.com> Date: 星期四, 12 十二月 2024 17:56:58 +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