Zxd.Core/code/Zxd.Domain/Impl/IUserInfoDomain.cs

16 lines
402 B
C#

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<List<UserInfoReq>> GetUserInfoByApi(string? appid, string? userid);
Task<List<UserInfoReq>> GetUserInfoByApi(string? resid);
}
}