24 lines
962 B
C#
24 lines
962 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Csvr
|
|
{
|
|
public interface ICSVR_FAVORITECUSTOMER_Q
|
|
{
|
|
|
|
CSVR_FAVORITECUSTOMER_extend GetModel_FavoriteCustomer(decimal id);
|
|
CSVR_FAVORITECUSTOMER_extend GetModel_FavoriteCustomer(string resid, decimal? userId);
|
|
List<CSVR_FAVORITECUSTOMER_extend> GetList(ref Pager pager, string memoId, string stime, string etime, string remark, string resId, bool? hasOrder, bool? IsFx, QueryUserComboDto usercomboDto);
|
|
int GetCount(decimal userId, string roleCodes);
|
|
List<CSVR_FAVORITECUSTOMER_Call> FavCallList(string resId, decimal userId);
|
|
/// <summary>
|
|
/// 获取客户ID的收藏人 和 归属人
|
|
/// </summary>
|
|
/// <param name="resid"></param>
|
|
/// <returns></returns>
|
|
List<CSVR_FAVORITECUSTOMER_AndMyRes> GetFavAndMyResList(string resid);
|
|
}
|
|
}
|