| | |
| | | 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 limit |
| | | * @param pageNum |
| | | * @param keyword |
| | | * @param pager |
| | | * @param classId |
| | | * @return |
| | | */ |
| | | List<Map<String, Object>> getStudentLst(String classId, String keyword, Pager pager); |
| | | List<StuStudent> findStudentFiles(Integer limit, Integer pageNum, String keyword, String classId); |
| | | |
| | | /** |
| | | * 获取学员数量 |
| | | * @param classId 班级id |
| | | * @param keyword 关键词 |
| | | * @return |
| | | */ |
| | | int getStudentsCount(String classId,String keyword); |
| | | /** |
| | | * 评语 |
| | | * @param studentIds |
| | | * @param comment |
| | | * @return |
| | | */ |
| | | String studentCommentAddAndUp(String[] studentIds,String comment); |
| | | int findfindStudentFilesListCount(String keyword, String classId); |
| | | } |