コード例 #1
0
 /**
  * 报名学生列表
  *
  * @return
  */
 @RequestMapping("/admin/apply_students")
 @ResponseBody
 public Pager<StudentDto> findApplyStudents(Pager<StudentDto> pager, Integer actId) {
   return studentService.findStudentByActivityId(pager, actId);
 }