TG.WXCRM.V4/IBLL/QH/IQH_CUSTOMERCAPITALCOUNT_Q.cs

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
}
}