|  | @@ -3,6 +3,7 @@ package com.ym.mec.web.controller;
 | 
	
		
			
				|  |  |  import com.ym.mec.auth.api.client.SysUserFeignService;
 | 
	
		
			
				|  |  |  import com.ym.mec.auth.api.entity.SysUser;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dao.EmployeeDao;
 | 
	
		
			
				|  |  | +import com.ym.mec.biz.dal.dao.MusicGroupDao;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.Employee;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.entity.Inspection;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.page.InspectionQueryInfo;
 | 
	
	
		
			
				|  | @@ -31,6 +32,8 @@ public class InspectionController extends BaseController {
 | 
	
		
			
				|  |  |      private EmployeeDao employeeDao;
 | 
	
		
			
				|  |  |      @Resource
 | 
	
		
			
				|  |  |      private SysUserFeignService sysUserFeignService;
 | 
	
		
			
				|  |  | +    @Autowired
 | 
	
		
			
				|  |  | +    private MusicGroupDao musicGroupDao;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @ApiOperation(value = "添加巡查任务")
 | 
	
		
			
				|  |  |      @PostMapping("/add")
 | 
	
	
		
			
				|  | @@ -92,4 +95,12 @@ public class InspectionController extends BaseController {
 | 
	
		
			
				|  |  |          return succeed(inspectionService.getInfo(id));
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiOperation(value = "获取分部进行中乐团的乐团主管")
 | 
	
		
			
				|  |  | +    @GetMapping("/getMusicGroupEduTeacher")
 | 
	
		
			
				|  |  | +    @PreAuthorize("@pcs.hasPermissions('inspection/getMusicGroupEduTeacher')")
 | 
	
		
			
				|  |  | +    public HttpResponseResult<List<SysUser>> getMusicGroupEduTeacher(Integer organId) {
 | 
	
		
			
				|  |  | +        return succeed(musicGroupDao.getMusicGroupEduTeacher(organId));
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  }
 |