“djh”
20 小时以前 75309a59a676fb70f91dd01b05d93c7704a3836f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package com.gkhy.exam.system.mapper;
 
import com.gkhy.exam.system.domain.ExExamRecord;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import com.gkhy.exam.system.domain.RecordFile;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
 
import java.util.List;
 
/**
 * <p>
 * 线下教育登记表 Mapper 接口
 * </p>
 *
 * @author kzy
 * @since 2024-06-24 16:16:33
 */
@Mapper
public interface ExExamRecordMapper extends BaseMapper<ExExamRecord> {
    /**
     * 分页获取登记记录列表
     * @param examRecord
     * @return
     */
    List<ExExamRecord> selectExamRecordList(ExExamRecord examRecord);
 
    /**
     * 根据id获取登记记录详情
     * @param recordId
     * @return
     */
    ExExamRecord selectExamRecordById(Long recordId);
 
    void insertFile(@Param("files") List<RecordFile> files, @Param("recordId") Long recordId);
 
    void deletedFile(@Param("id") Long id);
 
    List<RecordFile> selectFiles(@Param("id") Long id);
}