龚焕茏
2024-07-03 3ec909b27b3eba956aa9d00cc7a94c179bd04bbf
src/main/java/com/mindskip/xzs/repository/ExamPaperMapper.java
@@ -2,6 +2,9 @@
import com.mindskip.xzs.domain.ExamPaper;
import com.mindskip.xzs.domain.other.KeyValue;
import com.mindskip.xzs.domain.vo.ExamTemplatesVO;
import com.mindskip.xzs.domain.vo.PaperExcelVO;
import com.mindskip.xzs.domain.vo.UserVO;
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,11 +26,29 @@
    List<PaperInfo> indexPaper(PaperFilter paperFilter);
    Integer selectAllCount();
    Integer selectAllCount(List<Integer> deptIds);
    List<KeyValue> selectCountByDate(@Param("startTime") Date startTime, @Param("endTime") Date endTime);
    int updateTaskPaper(@Param("taskId") Integer taskId,@Param("paperIds") List<Integer> paperIds);
    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);
    List<ExamPaper> template(List<Integer> deptIds);
    List<UserVO> selectStudent(UserVO userVO);
    List<Integer> getExamPaperByTemplateId(ExamTemplatesVO model);
    List<ExamPaper> getExamPaper();
    List<ExamPaper> getTemplate();
}