Zxd.Core/code/Zxd.Crm.Domain/Impl/IWeworkUserWorkerDomain.cs

21 lines
553 B
C#

using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Zxd.Entity.Dncms;
namespace Zxd.Crm.Domain.Impl
{
public interface IWeworkUserWorkerDomain: IScopedDependency
{
/// <summary>
/// 获取客户关系
/// </summary>
/// <param name="deptid"></param>
/// <param name="limit"></param>
/// <returns></returns>
Task<IList<ResResidWeworkUserLog>> GetWeworkUserWorkerList(int? deptid,int minId, int limit = 100);
}
}