|  | @@ -4,6 +4,7 @@ import com.ym.mec.biz.dal.dto.ClassGroup4MixDto;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dto.HighClassGroupDto;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.ClassGroup;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.ClassGroupTeacherMapper;
 | 
	
		
			
				|  |  | +import com.ym.mec.biz.dal.enums.ClassGroupTypeEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.enums.SalarySettlementTypeEnum;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.page.queryMusicGroupCourseScheduleQueryInfo;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.service.ClassGroupService;
 | 
	
	
		
			
				|  | @@ -225,9 +226,12 @@ public class ClassGroupController extends BaseController {
 | 
	
		
			
				|  |  |      @ApiOperation(value = "合奏子班列表(班级调整)")
 | 
	
		
			
				|  |  |      @GetMapping("/classGroupAndTeacher")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('classGroup/classGroupAndTeacher')")
 | 
	
		
			
				|  |  | -    @ApiImplicitParams({@ApiImplicitParam(name = "classGroupId", value = "班级id", required = true, dataType = "int")})
 | 
	
		
			
				|  |  | -    public HttpResponseResult classGroupAndTeacher(Integer classGroupId) throws Exception {
 | 
	
		
			
				|  |  | -        return succeed(classGroupService.classGroupAndTeacher(classGroupId));
 | 
	
		
			
				|  |  | +    @ApiImplicitParams({
 | 
	
		
			
				|  |  | +            @ApiImplicitParam(name = "musicGroupId", value = "乐团id", required = true, dataType = "string"),
 | 
	
		
			
				|  |  | +            @ApiImplicitParam(name = "type", value = "班级类型", required = true, dataType = "string"),
 | 
	
		
			
				|  |  | +    })
 | 
	
		
			
				|  |  | +    public HttpResponseResult classGroupAndTeacher(String musicGroup, ClassGroupTypeEnum type) throws Exception {
 | 
	
		
			
				|  |  | +        return succeed(classGroupService.getClassGroupAndTeacherByType(musicGroup,type));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  }
 |