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 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 FavCallList(string resId, decimal userId); /// /// 获取客户ID的收藏人 和 归属人 /// /// /// List GetFavAndMyResList(string resid); } }