From 3450525681e6e290d80ee5d27d0aaca395b62c8f Mon Sep 17 00:00:00 2001 From: zf <1603559716@qq.com> Date: 星期四, 01 二月 2024 14:42:14 +0800 Subject: [PATCH] Merge branch 'master' of https://sinanoaq.cn:8888/r/swspkmas into zf1 --- exam-system/src/main/java/com/gkhy/exam/noncoalmine/mapper/IdentificationRecordMapper.java | 21 +++++++++++++++++++++ 1 files changed, 21 insertions(+), 0 deletions(-) diff --git a/exam-system/src/main/java/com/gkhy/exam/noncoalmine/mapper/IdentificationRecordMapper.java b/exam-system/src/main/java/com/gkhy/exam/noncoalmine/mapper/IdentificationRecordMapper.java new file mode 100644 index 0000000..7a0aa86 --- /dev/null +++ b/exam-system/src/main/java/com/gkhy/exam/noncoalmine/mapper/IdentificationRecordMapper.java @@ -0,0 +1,21 @@ +package com.gkhy.exam.noncoalmine.mapper; + +import com.baomidou.mybatisplus.core.mapper.BaseMapper; +import com.gkhy.exam.noncoalmine.entity.IdentificationRecord; +import com.gkhy.exam.noncoalmine.model.query.IdentificationRecordQuery; +import org.apache.ibatis.annotations.Mapper; +import org.springframework.stereotype.Repository; + +import java.util.List; + +/** + * @email 1603559716@qq.com + * @author: zf + * @date: 2023/10/13 + * @time: 14:05 + */ +@Repository +@Mapper +public interface IdentificationRecordMapper extends BaseMapper<IdentificationRecord> { + List<IdentificationRecord> getList(IdentificationRecordQuery query); +} -- Gitblit v1.9.2