|
@@ -86,12 +86,12 @@ public class ExtracurricularExercisesController extends BaseController {
|
|
|
|
|
|
@ApiOperation(value = "获取待布置学员列表")
|
|
|
@GetMapping("/getDontServeStudents")
|
|
|
- public HttpResponseResult getDontServeStudents(String search, String musicGroupId, Long classGroupId, Integer subjectId,Integer hasMember){
|
|
|
+ public HttpResponseResult getDontServeStudents(String search, String musicGroupId, Long classGroupId, Integer subjectId){
|
|
|
SysUser sysUser = sysUserFeignService.queryUserInfo();
|
|
|
if(Objects.isNull(sysUser)){
|
|
|
return failed(HttpStatus.FORBIDDEN,"请登录");
|
|
|
}
|
|
|
- return succeed(extracurricularExercisesService.getDontServeStudents(sysUser.getId(), search, musicGroupId, classGroupId, subjectId,hasMember));
|
|
|
+ return succeed(extracurricularExercisesService.getDontServeStudents(sysUser.getId(), search, musicGroupId, classGroupId, subjectId));
|
|
|
}
|
|
|
|
|
|
@ApiOperation(value = "获取待布置学员乐团列表")
|