1
2
3
4
5
6
7
8
9
10
11
12
13
14
| package com.ycl.jxkg.service;
|
| import com.github.pagehelper.PageInfo;
| import com.ycl.jxkg.domain.vo.student.wrong.WrongRequestVo;
| import com.ycl.jxkg.domain.vo.student.wrong.WrongResponseVO;
|
|
| public interface WrongService {
| /**
| * 条件查询错题
| * */
| PageInfo<WrongResponseVO> list(WrongRequestVo wrongRequestVo);
|
| }
|
|