using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; using Zxd.Entity.UserCenter; namespace Zxd.Domain.Impl { public interface IUserInfoDomain : IScopedDependency { Task> GetUserInfoByApi(string? appid, string? userid); Task> GetUserInfoByApi(string? resid); } }