From 3a8e1524dcf0eeb610d38123d5f0a3ef838379cd Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期一, 12 四月 2021 15:44:53 +0800 Subject: [PATCH] Merge branch '20210406-maqv2' into 20210412-youhua --- src/main/java/com/ots/project/exam/service/QuestionService.java | 10 ---------- 1 files changed, 0 insertions(+), 10 deletions(-) diff --git a/src/main/java/com/ots/project/exam/service/QuestionService.java b/src/main/java/com/ots/project/exam/service/QuestionService.java index bf7dfff..f6e873d 100644 --- a/src/main/java/com/ots/project/exam/service/QuestionService.java +++ b/src/main/java/com/ots/project/exam/service/QuestionService.java @@ -1,25 +1,15 @@ package com.ots.project.exam.service; - import com.github.pagehelper.PageInfo; import com.ots.project.exam.domain.Question; import com.ots.project.exam.viewmodel.QuestionEditRequestVM; import com.ots.project.exam.viewmodel.QuestionPageRequestVM; - import java.util.List; - public interface QuestionService extends IBaseExamService<Question> { - PageInfo<Question> page(QuestionPageRequestVM requestVM); - Question insertFullQuestion(QuestionEditRequestVM model, Integer userId); - Question updateFullQuestion(QuestionEditRequestVM model); - QuestionEditRequestVM getQuestionEditRequestVM(Integer questionId); - QuestionEditRequestVM getQuestionEditRequestVM(Question question); - Integer selectAllCount(); - List<Integer> selectMothCount(); } -- Gitblit v1.9.1