using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Core.Domain.Dto.Wework; namespace Zxd.Domain.Impl { public interface ICustomerDomain : IScopedDependency { Task> GetUsernames(string? resid); Task> GetUsernamesByOrderid(string orderidList); public class userRet { public string orderid { set; get; } public string softwarename { set; get; } } Task CreateCustomer(string MOBILE, string ResId, string CustomerFrom); Task> GetSalesLeadList(string? resId); Task> GetFollow(List queryList); Task> GetWorkWXUserSelectAsync(string? resId, string? DeptCode); Task> ExtUserBandGetAsync(string? resId); Task> GetResidByExtuser(List extUser); Task> GetPhoneByUnionid(string unionid); /// /// 添加标签数据 /// /// /// /// /// Task AddTag(string resid, string tag, int ceid); /// /// 删除标签 /// /// /// /// Task DelTag(int id, int deleteeid); /// /// 获取标签列表 /// /// /// Task> GetTag(string resid); } }