QuestionMapper.java 933 字节
package com.skua.modules.edu.mapper;

import java.util.List;

import org.apache.ibatis.annotations.Param;
import com.skua.modules.edu.entity.Question;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;

/**
 * 在线考试-试题
 */
public interface QuestionMapper extends BaseMapper<Question> {

    /***
     * 根据试卷编号获取试题集合
     * @param paperId
     * @return
     */
    public  List<Question> selectListByPaperId(@Param("paperId") String paperId);

    /***
     * 根据用户编号、试卷编号查询试题集合 包含用户答案 、试题分值
     * @param paperId
     * @return
     */
    public  List<Question> selectListByPaperIdAndUserId(@Param("paperId") String paperId,@Param("userPaperId") String userPaperId);

    /***
     * 校验试题是否被试卷使用
     * @param questionId
     * @return
     */
    public int checkByPaper(@Param("questionId")String questionId);
}