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/ExamPaperService.java | 12 ------------ 1 files changed, 0 insertions(+), 12 deletions(-) diff --git a/src/main/java/com/ots/project/exam/service/ExamPaperService.java b/src/main/java/com/ots/project/exam/service/ExamPaperService.java index 18b8817..945dab3 100644 --- a/src/main/java/com/ots/project/exam/service/ExamPaperService.java +++ b/src/main/java/com/ots/project/exam/service/ExamPaperService.java @@ -1,6 +1,4 @@ package com.ots.project.exam.service; - - import com.github.pagehelper.PageInfo; import com.ots.project.exam.domain.ExamPaper; import com.ots.project.exam.domain.ExamUser; @@ -9,24 +7,14 @@ import com.ots.project.exam.viewmodel.ExamPaperEditRequestVM; import com.ots.project.exam.viewmodel.ExamPaperPageRequestVM; import com.ots.project.exam.viewmodel.ExamPaperPageVM; - import java.util.List; - public interface ExamPaperService extends BaseService<ExamPaper> { - PageInfo<ExamPaper> page(ExamPaperPageRequestVM requestVM); - PageInfo<ExamPaper> taskExamPage(ExamPaperPageRequestVM requestVM); - PageInfo<ExamPaper> studentPage(ExamPaperPageVM requestVM); - ExamPaper savePaperFromVM(ExamPaperEditRequestVM examPaperEditRequestVM, ExamUser user); - ExamPaperEditRequestVM examPaperToVM(Integer id); - List<PaperInfo> indexPaper(PaperFilter paperFilter); - Integer selectAllCount(); - List<Integer> selectMothCount(); } -- Gitblit v1.9.1