package com.mindskip.xzs.service; import com.github.pagehelper.Page; import com.github.pagehelper.PageInfo; import com.mindskip.xzs.domain.ExamTemplatesUserCount; import com.mindskip.xzs.domain.vo.ExamTemplatesUserCountVO; import com.mindskip.xzs.domain.vo.UserCountExcelVO; import com.mindskip.xzs.viewmodel.admin.exam.ExamPaperPageRequestVM; import org.apache.ibatis.annotations.Param; import java.util.List; public interface ExamTemplatesUserCountService extends BaseService{ Integer add(ExamTemplatesUserCount examTemplatesUserCount); PageInfo list(ExamPaperPageRequestVM requestVM); List userCountList(ExamPaperPageRequestVM requestVM); List getByUserIdAndTemplatesId(ExamTemplatesUserCountVO examTemplatesUserCountVO); List getByTemplates(Integer id); List getByExamTemplates(Integer id); List getByExamTemplatesUser(Integer id); }