using DG.Core; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Crm.Domain.Dto; namespace Zxd.Crm.Domain.Impl { public interface ICacheDomain : ITransientDependency { Task GetValueParameter(string key); Task> GetDeptMapList(); Task AddDeptMapInfo(List dept); Task UpdateDeptMapInfo(List deptList); } }