package com.ssj.statistics.dao; import org.springframework.data.domain.Page; import org.springframework.data.domain.Pageable; import java.util.List; import java.util.Map; /** * @author sh * @className IStatisticsQueryDao * @description interface * @date 2021/2/27 */ public interface IStatisticsQueryDao { Page> statisticsList(Map params, Pageable initPage); Page> errorList(Map params, Pageable initPage); List> findStudentErrorList(String date,String teacherId,String subject); Map findTotalData(Map params); List> checkDetailList(String homeworkId); }