From 3d400cfcc41df9bc35678751f6f5afb5cf6c1ae5 Mon Sep 17 00:00:00 2001
From: heheng <475597332@qq.com>
Date: 星期三, 03 十二月 2025 14:52:54 +0800
Subject: [PATCH] 产品服务实现过程
---
multi-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperStudentMapper.java | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperStudentMapper.java b/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperStudentMapper.java
index cd0e45e..8492af5 100644
--- a/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperStudentMapper.java
+++ b/multi-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperStudentMapper.java
@@ -72,7 +72,7 @@
* @param studentId
* @return
*/
- List<ExPaperStudent> selectByStudentId(Long studentId);
+ List<ExPaperStudent> selectByStudentId(@Param("studentId") Long studentId);
/**
* 分页获取未完成考试学生列表
@@ -90,5 +90,7 @@
void batchUpdateComplete(@Param("paperStudentIds") List<Long> paperStudentIds,@Param("completed") Integer completed);
+ void deleteByPaperStudentId(@Param("paperId") Long paperId, @Param("studentId") Long studentId);
+ void updateByPaperStudentId(ExPaperStudent exPaperStudent);
}
--
Gitblit v1.9.2