|  | @@ -2,6 +2,8 @@ package com.yonge.cooleshow.admin.controller;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.dto.req.TotalReq;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.service.HomeService;
 | 
	
		
			
				|  |  | +import com.yonge.cooleshow.biz.dal.service.MusicSheetService;
 | 
	
		
			
				|  |  | +import com.yonge.cooleshow.biz.dal.vo.HomeMusicSheetVo;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.vo.res.HomeTotalStudent;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.vo.res.HomeTotalTeacher;
 | 
	
		
			
				|  |  |  import com.yonge.cooleshow.biz.dal.vo.res.HomeUserToDoNum;
 | 
	
	
		
			
				|  | @@ -21,6 +23,9 @@ public class HomeController extends BaseController {
 | 
	
		
			
				|  |  |      @Autowired
 | 
	
		
			
				|  |  |      private HomeService homeService;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +    @Autowired
 | 
	
		
			
				|  |  | +    private MusicSheetService musicSheetService;
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      @ApiOperation(value = "查询用户待办事项数")
 | 
	
		
			
				|  |  |      @PostMapping("/getUserToDoNum")
 | 
	
		
			
				|  |  |      @PreAuthorize("@pcs.hasPermissions('home/getUserToDoNum')")
 | 
	
	
		
			
				|  | @@ -42,4 +47,11 @@ public class HomeController extends BaseController {
 | 
	
		
			
				|  |  |          return homeService.totalStudent(totalReq);
 | 
	
		
			
				|  |  |      }
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +    @ApiOperation(value = "首页曲目点播数据")
 | 
	
		
			
				|  |  | +    @PostMapping("/musicSheet")
 | 
	
		
			
				|  |  | +    public HttpResponseResult<HomeMusicSheetVo> musicSheet() {
 | 
	
		
			
				|  |  | +        return succeed(musicSheetService.getMusicSheetHome());
 | 
	
		
			
				|  |  | +    }
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  }
 |