package com.ycl.jxkg.mapper;
|
|
import com.ycl.jxkg.domain.entity.ExamSubmitTemp;
|
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
import com.ycl.jxkg.domain.vo.ExamSubmitTempVO;
|
import java.util.List;
|
import org.apache.ibatis.annotations.Mapper;
|
|
/**
|
* 提交试卷临时保存 Mapper 接口
|
*
|
* @author xp
|
* @since 2024-06-13
|
*/
|
@Mapper
|
public interface ExamSubmitTempMapper extends BaseMapper<ExamSubmitTemp> {
|
|
/**
|
* id查找提交试卷临时保存
|
* @param id
|
* @return
|
*/
|
ExamSubmitTempVO getById(Integer id);
|
|
}
|