qirong
2023-07-28 fbdd6af3039a83cd4727a03cecb7c5914277371f
src/main/java/com/mindskip/xzs/service/ExamPaperService.java
@@ -8,6 +8,7 @@
import com.mindskip.xzs.viewmodel.student.dashboard.PaperInfo;
import com.mindskip.xzs.viewmodel.student.exam.ExamPaperPageVM;
import com.github.pagehelper.PageInfo;
import org.apache.ibatis.annotations.Param;
import java.util.List;
@@ -19,7 +20,7 @@
    PageInfo<ExamPaper> studentPage(ExamPaperPageVM requestVM);
    ExamPaper savePaperFromVM(ExamPaperEditRequestVM examPaperEditRequestVM, User user);
    ExamPaper savePaperFromVM(ExamPaperEditRequestVM examPaperEditRequestVM, User user) throws Exception;
    ExamPaperEditRequestVM examPaperToVM(Integer id);
@@ -28,4 +29,8 @@
    Integer selectAllCount();
    List<Integer> selectMothCount();
    Integer removeByIds(Integer[] ids);
    List<ExamPaper> gets(Integer[] ids);
}