cloud-server-account/src/main/java/com/dsh/account/controller/StudentController.java
@@ -58,7 +58,17 @@ @Resource private CoursePackageClient coursePackageClient; /** * 查询惠民卡绑定学员列表信息 * * @return */ @RequestMapping("/base/student/getStudentByIds/{ids}") public List<TStudent> getStudentByIds(@PathVariable("ids") String ids) { List<TStudent> list = studentService.list(new LambdaQueryWrapper<TStudent>() .in(TStudent::getId, Arrays.asList(ids.split(",")))); return list; } /** * 添加学员