You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

53 lines
937 B
C#

12 months ago
using DS.Module.Core;
namespace DS.Module.UserModule;
/// <summary>
/// 用户接口
/// </summary>
public interface IUser
{
/// <summary>
/// 获取用户信息
/// </summary>
UserInfo UserInfo { get; }
/// <summary>
/// 获取用户ID
/// </summary>
string UserId { get; }
/// <summary>
/// 获取公司ID
/// </summary>
string CompanyId { get; }
/// <summary>
/// 租户ID
/// </summary>
string TenantId { get; }
10 months ago
/// <summary>
/// 机构ID
/// </summary>
string OrgId { get; }
/// <summary>
/// 获取机构ID
/// </summary>
long GetOrgId();
12 months ago
/// <summary>
/// 获取公司ID
/// </summary>
string GetCompanyId();
/// <summary>
/// 获取租户ID
/// </summary>
long GetTenantId();
10 months ago
12 months ago
/// <summary>
/// 获取Token
/// </summary>
/// <returns></returns>
string GetToken();
}