15 lines
428 B
C#
15 lines
428 B
C#
using System.Collections.Generic;
|
|
using WX.CRM.Common;
|
|
using WX.CRM.Model.Entity;
|
|
using WX.CRM.Model.MAP;
|
|
|
|
namespace WX.CRM.IBLL.Wx
|
|
{
|
|
public interface IWX_MANUALADDWEIXINFRIEND : IRepository<WX_MANUALADDWEIXINFRIEND>
|
|
{
|
|
RES_CUSTOMER IsOfflineRes(string resId, List<decimal> resTypeIdList);
|
|
|
|
List<WX_MANUALADDWEIXINFRIEND_Extend> GetList(ref Pager pager, decimal innerUserId, string workAlias);
|
|
}
|
|
}
|