From 47cd9ecc0eff38ffe6b3b794b2bf197e958f4403 Mon Sep 17 00:00:00 2001
From: xiangpei <xiangpei@timesnew.cn>
Date: 星期三, 14 五月 2025 15:50:57 +0800
Subject: [PATCH] bug:学员有状态不能修改问题

---
 src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java |   34 ++++++++++++++++++++++++++++++++--
 1 files changed, 32 insertions(+), 2 deletions(-)

diff --git a/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java b/src/main/java/com/mindskip/xzs/repository/ExamPaperAnswerMapper.java
index 4f18d9c..531b846 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;
@@ -50,9 +49,40 @@
 
     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);
+
+
+    /**
+     * 鏍规嵁绛斿嵎璇曞嵎id鑾峰彇鏈�楂樻垚缁╃瓟鍗�
+     * @param examPaperAnswer 绛斿嵎
+     * @return 鏈�楂樻垚缁╃瓟鍗�
+     */
+    ExamPaperAnswer getTemplateOtherExamAnswer(@Param("examPaperAnswer") ExamPaperAnswer examPaperAnswer, @Param("templateId") Integer templateId);
+
+    /**
+     * 鏍规嵁璇曞嵎id鑾峰彇鏈�楂樻垚缁╃瓟鍗�
+     * @param examPaperAnswer 绛斿嵎
+     * @return 鏈�楂樻垚缁╃瓟鍗�
+     */
+    ExamPaperAnswer getPaperOtherExamAnswer(ExamPaperAnswer examPaperAnswer);
 }

--
Gitblit v1.8.0