From 8bda5d156d97a6f86da6ee068447643a2fff8c4f Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: Mon, 02 Feb 2026 16:27:44 +0800
Subject: [PATCH] 去除多余引用

---
 multi-system/src/main/java/com/gkhy/exam/system/mapper/ExStudentAnswerMapper.java |    7 ++++++-
 1 files changed, 6 insertions(+), 1 deletions(-)

diff --git a/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExStudentAnswerMapper.java b/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExStudentAnswerMapper.java
index 628cf5c..dc031ff 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExStudentAnswerMapper.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExStudentAnswerMapper.java
@@ -1,7 +1,8 @@
 package com.gkhy.exam.system.mapper;
 
-import com.gkhy.exam.system.domain.ExStudentAnswer;
 import com.baomidou.mybatisplus.core.mapper.BaseMapper;
+import com.gkhy.exam.system.domain.ExPaperStudent;
+import com.gkhy.exam.system.domain.ExStudentAnswer;
 import org.apache.ibatis.annotations.Mapper;
 import org.apache.ibatis.annotations.Param;
 
@@ -33,4 +34,8 @@
      * @return
      */
     ExStudentAnswer getStudentAnswer(ExStudentAnswer studentAnswer);
+
+    void deletedByPaperStudentId(@Param("paperId") Long paperId, @Param("studentId") Long studentId);
+
+    void updateState(ExPaperStudent exPaperStudent);
 }

--
Gitblit v1.9.2