22 lines
881 B
C#
22 lines
881 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
|
|
namespace WX.CRM.IBLL.QH
|
|
{
|
|
public interface IQH_CUSTOMERCAPITALCOUNT_Q
|
|
{
|
|
#region 根据交易商代码获取资金汇总缓存表数据
|
|
List<CACHE_QH_CUSTOMERCAPITALCOUNT> GetList_Cache_QH_CustomerCapitalCount(string tradecode);
|
|
#endregion
|
|
|
|
#region 根据交易商代码获取资金汇总表数据
|
|
List<QH_CUSTOMERCAPITALCOUNT> GetList_QH_RecentCustomerCapitalcount(ref Pager pager, string tradecode, string Stime, string Etime);
|
|
#endregion
|
|
|
|
#region 获取资金汇总表以及历史资金汇总表的数据
|
|
List<QH_CUSTOMERCAPITALCOUNT> GetList_QH_CustomerCapitalcount(ref Pager pager, string tradecode, string Stime, string Etime, string group, decimal user, decimal his, string businessType);
|
|
#endregion
|
|
}
|
|
}
|