From 345eab350d41d832c040d63011a178689696b650 Mon Sep 17 00:00:00 2001 From: linzhijie <19970921lzj> Date: 星期日, 28 三月 2021 12:03:55 +0800 Subject: [PATCH] 更改短信默认模板 --- src/main/java/com/ots/project/exam/service/ExamPaperService.java | 12 ++++++++++++ 1 files changed, 12 insertions(+), 0 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 945dab3..18b8817 100644 --- a/src/main/java/com/ots/project/exam/service/ExamPaperService.java +++ b/src/main/java/com/ots/project/exam/service/ExamPaperService.java @@ -1,4 +1,6 @@ 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; @@ -7,14 +9,24 @@ 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