qirong
2023-06-26 77be36cc9077b09186e69440f3204f9e623c335a
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);
@@ -30,4 +31,6 @@
    List<Integer> selectMothCount();
    Integer removeByIds(Integer[] ids);
    List<ExamPaper> gets(Integer[] ids);
}