“djh”
3 days ago c26e227abe288476c11b0a8b7875045e71efa14c
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);
}