zf
2024-02-01 ff361322dc19350e81cf26ae4e6c542ad0f934d1
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
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);
}