小么熊🐻 3 жил өмнө
parent
commit
9cb22ec4bd

+ 25 - 0
twzd-service/src/main/java/com/miaxis/question/mapper/QuestionWrongMapper.java

@@ -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);
+
+}