|
@@ -0,0 +1,25 @@
|
|
|
+package com.miaxis.question.mapper;
|
|
|
+
|
|
|
+
|
|
|
+import com.baomidou.mybatisplus.core.mapper.BaseMapper;
|
|
|
+import com.miaxis.question.domain.QuestionWrong;
|
|
|
+import com.miaxis.question.dto.QuestionWrongListDTO;
|
|
|
+
|
|
|
+import java.util.List;
|
|
|
+
|
|
|
+/**
|
|
|
+ * wrongMapper接口
|
|
|
+ *
|
|
|
+ * @author miaxis
|
|
|
+ * @date 2021-08-19
|
|
|
+ */
|
|
|
+public interface QuestionWrongMapper extends BaseMapper<QuestionWrong> {
|
|
|
+ /**
|
|
|
+ * 查询wrong列表
|
|
|
+ *
|
|
|
+ * @param questionWrong wrong
|
|
|
+ * @return wrong集合
|
|
|
+ */
|
|
|
+ public List<QuestionWrong> selectQuestionWrongList(QuestionWrongListDTO questionWrong);
|
|
|
+
|
|
|
+}
|