1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
| package com.qxueyou.scc.admin.studentFiles;
|
| import com.qxueyou.scc.base.model.Pager;
| import com.qxueyou.scc.base.model.Result;
| import com.qxueyou.scc.teach.student.model.StuStudent;
|
| import java.util.List;
| import java.util.Map;
|
| /**
| * 学生档案管理
| */
| public interface StudentFilesService {
| /**
| * 学生档案查询
| * @param classId
| * @param keyword
| * @param pager
| * @return
| */
| List<Map<String, Object>> getStudentLst(String classId, String keyword, Pager pager);
|
| /**
| * 获取学员数量
| * @param classId 班级id
| * @param keyword 关键词
| * @return
| */
| int getStudentsCount(String classId,String keyword);
| /**
| * 评语
| * @param studentIds
| * @param comment
| * @return
| */
| String studentCommentAddAndUp(String[] studentIds,String comment);
| }
|
|