heheng
2026-02-02 44036f6e3f4d443d58f594774ef89221f7a87036
multi-system/src/main/java/com/gkhy/exam/system/mapper/ExExamRecordMapper.java
@@ -1,8 +1,10 @@
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.ExExamRecord;
import com.gkhy.exam.system.domain.RecordFile;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -29,4 +31,10 @@
     * @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);
}