|  | @@ -3,6 +3,7 @@ package com.ym.mec.biz.service.impl;
 | 
	
		
			
				|  |  |  import com.alibaba.fastjson.JSON;
 | 
	
		
			
				|  |  |  import com.huifu.adapay.model.payment.Payment;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dao.StudentPaymentOrderDao;
 | 
	
		
			
				|  |  | +import com.ym.mec.biz.dal.dao.SysUserCashAccountDao;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dto.PageInfoOrder;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dto.SporadicChargeInfoDto;
 | 
	
		
			
				|  |  |  import com.ym.mec.biz.dal.dto.StudentPaymentOrderExportDto;
 | 
	
	
		
			
				|  | @@ -50,6 +51,8 @@ public class StudentPaymentOrderServiceImpl extends BaseServiceImpl<Long, Studen
 | 
	
		
			
				|  |  |      private SporadicChargeInfoService sporadicChargeInfoService;
 | 
	
		
			
				|  |  |      @Autowired
 | 
	
		
			
				|  |  |      private PracticeGroupService practiceGroupService;
 | 
	
		
			
				|  |  | +    @Autowired
 | 
	
		
			
				|  |  | +    private SysUserCashAccountDao sysUserCashAccountDao;
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |      @Override
 | 
	
		
			
				|  |  |      public BaseDAO<Long, StudentPaymentOrder> getDAO() {
 | 
	
	
		
			
				|  | @@ -282,6 +285,8 @@ public class StudentPaymentOrderServiceImpl extends BaseServiceImpl<Long, Studen
 | 
	
		
			
				|  |  |  
 | 
	
		
			
				|  |  |          List<StudentPaymentOrder> dataList = new ArrayList<>();
 | 
	
		
			
				|  |  |          int count = this.findCount(params);
 | 
	
		
			
				|  |  | +        BigDecimal totalUserBalance = sysUserCashAccountDao.getTotalUserBalance();
 | 
	
		
			
				|  |  | +        pageInfo.setTotalUserBalance(totalUserBalance);
 | 
	
		
			
				|  |  |          if (count > 0) {
 | 
	
		
			
				|  |  |              pageInfo.setTotal(count);
 | 
	
		
			
				|  |  |              params.put("offset", pageInfo.getOffset());
 |