|  | @@ -696,7 +696,7 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
 | 
	
		
			
				|  |  |  			oneChild.add(new IndexErrInfoDto(IndexErrorType.MUSIC_PATROL_ITEM, IndexErrorType.MUSIC_PATROL_ITEM.getMsg(),errInspection, null));
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  			//未加入任何班级学员
 | 
	
		
			
				|  |  | -			IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId,tenantId);
 | 
	
		
			
				|  |  | +			IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId,tenantId,true);
 | 
	
		
			
				|  |  |  			noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_INFO.getMsg());
 | 
	
		
			
				|  |  |  			oneChild.add(noClassMusicGroupStudentInfo);
 | 
	
		
			
				|  |  |  
 | 
	
	
		
			
				|  | @@ -1133,6 +1133,11 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
 | 
	
		
			
				|  |  |  		//基础技能班学员数量异常提醒
 | 
	
		
			
				|  |  |  		result.add(new IndexErrInfoDto(IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE_INFO, IndexErrorType.HIGH_CLASS_STUDENT_LESS_THAN_THREE_INFO.getMsg(), indexBaseMonthDataDao.countLessThenThreeClassGroupNum(organIdSet,educationUserId,tenantId,true), null));
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +		//未加入任何班级学员
 | 
	
		
			
				|  |  | +		IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIdSet,educationUserId,tenantId,false);
 | 
	
		
			
				|  |  | +		noClassMusicGroupStudentInfo.setDesc(IndexErrorType.NO_CLASS_MUSIC_GROUP_STUDENT_INFO.getMsg());
 | 
	
		
			
				|  |  | +		result.add(noClassMusicGroupStudentInfo);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |  		//合作单位回款提醒
 | 
	
		
			
				|  |  |  		Map<String, Object> params = new HashMap<>();
 | 
	
		
			
				|  |  |  		params.put("organId", organIds);
 | 
	
	
		
			
				|  | @@ -1175,7 +1180,7 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
 | 
	
		
			
				|  |  |  			}
 | 
	
		
			
				|  |  |  		}
 | 
	
		
			
				|  |  |  		if(!flag1){
 | 
	
		
			
				|  |  | -			IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId, tenantId);
 | 
	
		
			
				|  |  | +			IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId, tenantId,true);
 | 
	
		
			
				|  |  |  			if(Objects.nonNull(noClassMusicGroupStudentInfo) && noClassMusicGroupStudentInfo.getNum() > 0){
 | 
	
		
			
				|  |  |  				flag1 = true;
 | 
	
		
			
				|  |  |  			}
 | 
	
	
		
			
				|  | @@ -1359,6 +1364,12 @@ public class IndexBaseMonthDataServiceImpl extends BaseServiceImpl<Long, IndexBa
 | 
	
		
			
				|  |  |  				flag5 = true;
 | 
	
		
			
				|  |  |  			}
 | 
	
		
			
				|  |  |  		}
 | 
	
		
			
				|  |  | +		if(!flag5){
 | 
	
		
			
				|  |  | +			IndexErrInfoDto noClassMusicGroupStudentInfo = indexBaseMonthDataDao.getNoClassMusicGroupStudentInfo(organIds,educationUserId, tenantId,false);
 | 
	
		
			
				|  |  | +			if(Objects.nonNull(noClassMusicGroupStudentInfo) && noClassMusicGroupStudentInfo.getNum() > 0){
 | 
	
		
			
				|  |  | +				flag5 = true;
 | 
	
		
			
				|  |  | +			}
 | 
	
		
			
				|  |  | +		}
 | 
	
		
			
				|  |  |  		resultMap.put("remindMatterData",flag5);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  		return resultMap;
 |