From 3aae8ddd5b9624626921abdcc33122dccdcd5c61 Mon Sep 17 00:00:00 2001
From: “djh” <“3298565835@qq.com”>
Date: 星期五, 27 十二月 2024 13:24:46 +0800
Subject: [PATCH] 修改学时证书接收接口

---
 exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThExamRecordMapper.java |    7 +++++++
 1 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThExamRecordMapper.java b/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThExamRecordMapper.java
index 67f10f4..2431834 100644
--- a/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThExamRecordMapper.java
+++ b/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThExamRecordMapper.java
@@ -4,7 +4,9 @@
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
 import com.gkhy.exam.institutionalaccess.entity.ThExamRecord;
 import com.gkhy.exam.institutionalaccess.model.query.ThExamRecordQuery;
+import com.gkhy.exam.institutionalaccess.model.query.ThStatisticQuery;
 import com.gkhy.exam.institutionalaccess.model.vo.ThExamRecordVO;
+import com.gkhy.exam.institutionalaccess.model.vo.ThTrainVO;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 import org.springframework.stereotype.Repository;
@@ -15,4 +17,9 @@
 @Mapper
 public interface ThExamRecordMapper extends BaseMapper<ThExamRecord> {
     List<ThExamRecordVO> listByPage(@Param("query") ThExamRecordQuery query);
+
+    List<ThExamRecord> getByUuids(@Param("examUuids") List<String> examUuids);
+    Integer insertBatch(@Param("list") List<ThExamRecord> list);
+
+    List<ThTrainVO> getStatistic(@Param("query") ThStatisticQuery thStatisticQuery);
 }

--
Gitblit v1.9.2