From 44f7e1fe5136eb0666bb599387406ea6b12e659b Mon Sep 17 00:00:00 2001 From: heheng <heheng@123456> Date: 星期二, 21 一月 2025 16:34:14 +0800 Subject: [PATCH] 特种作业非煤缴费版本 --- exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThStudentMapper.java | 7 ++++++- 1 files changed, 6 insertions(+), 1 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThStudentMapper.java b/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThStudentMapper.java index 5d91a2a..a1259be 100644 --- a/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThStudentMapper.java +++ b/exam-system/src/main/java/com/gkhy/exam/institutionalaccess/mapper/ThStudentMapper.java @@ -11,7 +11,12 @@ @RequestMapping @Mapper public interface ThStudentMapper extends BaseMapper<ThStudent> { - int updateByIdcard(@Param("list") List<ThStudent> list); + Integer updateBatch(@Param("list") List<ThStudent> list); + Integer insertBatch(@Param("list") List<ThStudent> saveSudentList); + + List<ThStudent> getByIdCards(@Param("idcards") List<String> idcards); + + List<ThStudent> getNameByIdcards(@Param("idcards")List<String> idcards); } -- Gitblit v1.9.2