|  | @@ -72,6 +72,12 @@ public class TenantAlbumSheetController extends BaseController {
 | 
	
		
			
				|  |  |          }
 | 
	
		
			
				|  |  |          query.setUserId(user.getId());
 | 
	
		
			
				|  |  |          query.setClientType(ClientEnum.STUDENT);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +        Student student = studentService.getById(user.getId());
 | 
	
		
			
				|  |  | +        if (student == null) {
 | 
	
		
			
				|  |  | +            throw new BizException("学生信息不存在");
 | 
	
		
			
				|  |  | +        }
 | 
	
		
			
				|  |  | +        query.setSubjectId(Long.parseLong(student.getSubjectId()));
 | 
	
		
			
				|  |  |          IPage<TenantAlbumMusicWrapper.StudentTenantAlbumMusic> page = tenantAlbumMusicService.selectPage(QueryInfo.getPage(query), query);
 | 
	
		
			
				|  |  |          return succeed((PageUtil.pageInfo(page)));
 | 
	
		
			
				|  |  |      }
 |