From c5c10c1bb95f5bb7fdc8b714c5c998e78c26e0f7 Mon Sep 17 00:00:00 2001
From: 龚焕茏 <2842157468@qq.com>
Date: 星期二, 09 七月 2024 09:47:43 +0800
Subject: [PATCH] feat:标签新增、下拉增加部门id

---
 src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java |   21 ++++++++++++++++++---
 1 files changed, 18 insertions(+), 3 deletions(-)

diff --git a/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java b/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java
index 5ad4dcf..8fe8d1a 100644
--- a/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java
+++ b/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java
@@ -4,8 +4,7 @@
 import com.mindskip.xzs.domain.ExamTemplatesUserCount;
 import com.mindskip.xzs.domain.ScoreTemplatesUserCount;
 import com.mindskip.xzs.domain.other.KeyValue;
-import com.mindskip.xzs.domain.vo.ExamPaperStatisticVO;
-import com.mindskip.xzs.domain.vo.TeamplatesUserExcelVO;
+import com.mindskip.xzs.domain.vo.*;
 import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperEditRequestVM;
 import com.mindskip.xzs.viewmodel.admin.paper.ExamPaperGradePageRequestVM;
 import com.mindskip.xzs.viewmodel.admin.paper.ExamPaperGradeQuery;
@@ -22,7 +21,7 @@
 
     List<ExamPaperAnswer> studentPage(ExamPaperAnswerPageVM requestVM);
 
-    Integer selectAllCount();
+    Integer selectAllCount(List<Integer> deptIds);
 
     List<KeyValue> selectCountByDate(@Param("startTime") Date startTime, @Param("endTime") Date endTime);
 
@@ -50,9 +49,25 @@
 
     void setMissExam(ExamPaperEditRequestVM model);
 
+    void setMissExam(ExamTemplatesVO model);
+
+    void setMissExamByTemplate(ExamTemplatesVO model);
+
     void insertDefault(ExamPaperEditRequestVM model);
 
     Map<String, Object> histogram(ExamPaperStatisticVO examPaperStatisticVO);
 
+    Map<String, Object> histogramByTemplate(ExamPaperStatisticVO examPaperStatisticVO);
+
     Map<String, Object> pieChart(ExamPaperStatisticVO examPaperStatisticVO);
+
+    List<ExamPaperDataExportVO> dataByTemplate(ExamPaperDataVO examPaperDataVO);
+
+    ExamPaperDataExportVO totalByTemplate(ExamPaperDataVO examPaperDataVO);
+
+    List<ExamPaperDataExportVO> dataByPaper(ExamPaperDataVO examPaperDataVO);
+
+    ExamPaperDataExportVO totalByPaper(ExamPaperDataVO examPaperDataVO);
+
+    Integer getExamTotal(ExamPaperStatisticVO examPaperStatisticVO);
 }

--
Gitblit v1.8.0