From 49c5471cc12d7ec57db3cad6964b7e4f61d472f2 Mon Sep 17 00:00:00 2001
From: Administrator <admin>
Date: Fri, 06 May 2022 09:31:26 +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