xiangpei
2024-05-16 143ebce41207eb0d3a4df3b6bbd3d482e4f0a8c2
src/main/java/com/mindskip/xzs/repository/ExamPaperMapper.java
@@ -2,6 +2,7 @@
import com.mindskip.xzs.domain.ExamPaper;
import com.mindskip.xzs.domain.other.KeyValue;
import com.mindskip.xzs.domain.vo.PaperExcelVO;
import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperPageRequestVM;
import com.mindskip.xzs.viewmodel.student.dashboard.PaperFilter;
import com.mindskip.xzs.viewmodel.student.dashboard.PaperInfo;
@@ -23,7 +24,7 @@
    List<PaperInfo> indexPaper(PaperFilter paperFilter);
    Integer selectAllCount();
    Integer selectAllCount(List<Integer> deptIds);
    List<KeyValue> selectCountByDate(@Param("startTime") Date startTime, @Param("endTime") Date endTime);
@@ -32,4 +33,10 @@
    int clearTaskPaper(@Param("paperIds") List<Integer> paperIds);
    Integer removeByIds(@Param("ids") Integer[] ids);
    List<ExamPaper> gets(@Param("ids") Integer[] ids);
    List<PaperExcelVO> getPaperExcelById(@Param("id") Integer id);
    List<ExamPaper> list(List<Integer> deptIds);
}