kongzy
2024-09-14 f0f00e9ba8a755e4317e029d73b69a92ad9f9df1
exam-system/src/main/java/com/gkhy/exam/system/mapper/ExPaperQuestionMapper.java
@@ -3,6 +3,7 @@
import com.gkhy.exam.system.domain.ExPaperQuestion;
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Mapper;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -31,7 +32,7 @@
    /**
     * 删除考卷下试题
     * @param paperId
     * @param code
     * @param questionType
     */
    void deletePaperQuestion(Long paperId, Integer code);
    void deletePaperQuestion(@Param("paperId") Long paperId, @Param("questionType") Integer questionType);
}