From 8853292babb2ad94de4a3207966f1e83b767cd2d Mon Sep 17 00:00:00 2001
From: zhongrj <646384940@qq.com>
Date: Sun, 17 Sep 2023 16:38:34 +0800
Subject: [PATCH] 新增流程节点进程查询接口
---
src/main/java/org/springblade/modules/exam/controller/ScoreAuditRecordsController.java | 8 ++++++++
1 files changed, 8 insertions(+), 0 deletions(-)
diff --git a/src/main/java/org/springblade/modules/exam/controller/ScoreAuditRecordsController.java b/src/main/java/org/springblade/modules/exam/controller/ScoreAuditRecordsController.java
index b0b0be5..bdb5465 100644
--- a/src/main/java/org/springblade/modules/exam/controller/ScoreAuditRecordsController.java
+++ b/src/main/java/org/springblade/modules/exam/controller/ScoreAuditRecordsController.java
@@ -138,6 +138,14 @@
return R.status(scoreAuditRecordsService.applyAudit(scoreAuditRecords));
}
+ /**
+ * 批量申请审核
+ * @param scoreAuditRecords 考试成绩修改申请记录审核
+ */
+ @PostMapping("/batchAudit")
+ public R batchAudit(@RequestBody ScoreAuditRecordsVO scoreAuditRecords){
+ return R.status(scoreAuditRecordsService.batchAudit(scoreAuditRecords));
+ }
}
--
Gitblit v1.9.3