|  | @@ -36,7 +36,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
 | 
	
		
			
				|  |  |  	 * @param musicGroupId
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
		
			
				|  |  | -	List<Map<Integer,Integer>> countPayNum(@Param("musicGroupId") String musicGroupId);
 | 
	
		
			
				|  |  | +	List<Map<Integer, Integer>> countPayNum(@Param("musicGroupId") String musicGroupId);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	/**
 | 
	
		
			
				|  |  |  	 * 学生报名缴费金额详情
 | 
	
	
		
			
				|  | @@ -62,10 +62,11 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
 | 
	
		
			
				|  |  |  	 * @param musicGroupId
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
		
			
				|  |  | -	List<Map<Integer,Long>> getNoClassStuCountBySubjectId(@Param("musicGroupId") String musicGroupId);
 | 
	
		
			
				|  |  | +	List<Map<Integer, Long>> getNoClassStuCountBySubjectId(@Param("musicGroupId") String musicGroupId);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	/**
 | 
	
		
			
				|  |  |  	 * 根据乐团id和user_id 更新
 | 
	
		
			
				|  |  | +	 *
 | 
	
		
			
				|  |  |  	 * @param studentRegistration
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
	
		
			
				|  | @@ -73,6 +74,7 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	/**
 | 
	
		
			
				|  |  |  	 * 查询学生信息
 | 
	
		
			
				|  |  | +	 *
 | 
	
		
			
				|  |  |  	 * @param userId
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
	
		
			
				|  | @@ -80,7 +82,8 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	/**
 | 
	
		
			
				|  |  |  	 * 查询用户指定乐团的报名信息
 | 
	
		
			
				|  |  | -	 * @param userId 用户编号
 | 
	
		
			
				|  |  | +	 *
 | 
	
		
			
				|  |  | +	 * @param userId       用户编号
 | 
	
		
			
				|  |  |  	 * @param musicGroupId 乐团编号
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
	
		
			
				|  | @@ -98,8 +101,17 @@ public interface StudentRegistrationDao extends BaseDAO<Long, StudentRegistratio
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  	/**
 | 
	
		
			
				|  |  |  	 * 查询用户是否存在
 | 
	
		
			
				|  |  | +	 *
 | 
	
		
			
				|  |  |  	 * @param phone
 | 
	
		
			
				|  |  |  	 * @return
 | 
	
		
			
				|  |  |  	 */
 | 
	
		
			
				|  |  |  	SysUser getSysUserByPhone(String phone);
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  | +	/**
 | 
	
		
			
				|  |  | +	 * 获取班级学生
 | 
	
		
			
				|  |  | +	 * @param musicGroupId
 | 
	
		
			
				|  |  | +	 * @param classGroupId
 | 
	
		
			
				|  |  | +	 * @return
 | 
	
		
			
				|  |  | +	 */
 | 
	
		
			
				|  |  | +	List<StudentRegistration> findClassGroupStu(@Param("musicGroupId") String musicGroupId, @Param("classGroupId") Integer classGroupId);
 | 
	
		
			
				|  |  |  }
 |