| 
					
				 | 
			
			
				@@ -2817,6 +2817,7 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         musicGroup.setPaymentExpireDate(DateUtil.toDate(expireDate)); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         musicGroup.setStatus(MusicGroupStatusEnum.PAY); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         musicGroupDao.update(musicGroup); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+        List<Map<Integer, String>> mapList = studentRegistrationDao.findMapByMusicGroupId(musicGroupId, 0); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         //所有人开启缴费 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         studentRegistrationDao.musicGroupOpenPay(musicGroupId, PaymentStatusEnum.OPEN); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         MusicGroupPaymentCalender regCalender = musicGroupPaymentCalenderDao.findByMusicGroupRegCalender(musicGroupId); 
			 | 
		
	
	
		
			
				| 
					
				 | 
			
			
				@@ -2829,7 +2830,7 @@ public class MusicGroupServiceImpl extends BaseServiceImpl<String, MusicGroup> i 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         //三方乐团不发送缴费通知 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				         if (musicGroup.getOwnershipType() != null && musicGroup.getOwnershipType() == CooperationOrgan.OwnershipType.OWN) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             //获取所有已报名学员列表 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				-            HashMap<Integer, String> map = JSONObject.parseObject(JSONObject.toJSONString(MapUtil.convertMybatisMap(studentRegistrationDao.findMapByMusicGroupId(musicGroupId, 0))), HashMap.class); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				+            HashMap<Integer, String> map = JSONObject.parseObject(JSONObject.toJSONString(MapUtil.convertMybatisMap(mapList)), HashMap.class); 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				             if (map != null && map.size() > 0) { 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 String studentApplyUrl = sysConfigDao.findConfigValue(SysConfigService.STUDENT_APPLY_URL) + musicGroupId; 
			 | 
		
	
		
			
				 | 
				 | 
			
			
				                 String serverPhone = sysConfigDao.findConfigValue(SysConfigService.SERVER_PHONE); 
			 |