1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
| package com.qxueyou.scc.admin.studentFiles;
|
| import com.qxueyou.scc.teach.student.model.StuStudent;
|
| import java.util.List;
|
| /**
| * 学生档案管理
| */
| public interface StudentFilesService {
| /**
| *学生档案查询
| * @param limit
| * @param pageNum
| * @param keyword
| * @param classId
| * @return
| */
| List<StuStudent> findStudentFiles(Integer limit, Integer pageNum, String keyword, String classId);
|
| int findfindStudentFilesListCount(String keyword, String classId);
| }
|
|