You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

24 lines
684 B

  1. using System.Collections.Generic;
  2. namespace Learun.Application.CRM
  3. {
  4. /// <summary>
  5. /// 版 本 Learun-ADMS-Ultimate V7.0.0 数字化智慧校园
  6. /// Copyright (c) 2013-2018 北京泉江科技有限公司
  7. /// 创 建:超级管理员
  8. /// 日 期:2017-07-11 14:20
  9. /// 描 述:现金余额
  10. /// </summary>
  11. public interface CrmCashBalanceIBLL
  12. {
  13. #region 获取数据
  14. /// <summary>
  15. /// 获取列表
  16. /// </summary>
  17. /// <param name="queryJson">查询参数</param>
  18. /// <returns>返回列表</returns>
  19. IEnumerable<CrmCashBalanceEntity> GetList(string queryJson);
  20. #endregion
  21. }
  22. }