|  | @@ -6,6 +6,7 @@ import org.apache.ibatis.annotations.Param;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  import java.math.BigDecimal;
 | 
	
		
			
				|  |  |  import java.util.List;
 | 
	
		
			
				|  |  | +import java.util.Map;
 | 
	
		
			
				|  |  |  import java.util.Set;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |  public interface SysUserCashAccountDao extends BaseDAO<Integer, SysUserCashAccount> {
 | 
	
	
		
			
				|  | @@ -27,9 +28,10 @@ public interface SysUserCashAccountDao extends BaseDAO<Integer, SysUserCashAccou
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  |      List<SysUserCashAccount> findByUserIds(@Param("userIds") Set<Integer> userIds);
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  | +
 | 
	
		
			
				|  |  |      /**
 | 
	
		
			
				|  |  |       * 获取预收余额
 | 
	
		
			
				|  |  |       * @return
 | 
	
		
			
				|  |  |       */
 | 
	
		
			
				|  |  | -    BigDecimal getTotalUserBalance();
 | 
	
		
			
				|  |  | +    BigDecimal getTotalUserBalance(Map<String, Object> params);
 | 
	
		
			
				|  |  |  }
 |