using GDZZ.Core; using GDZZ.Core.Service; using Org.BouncyCastle.Bcpg.OpenPgp; using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace GDZZ.Application { public class AuthUserOut { /// /// 用户ID /// public long UserId { get; set; } /// /// 登录令牌 /// public string Token { get; set;} /// /// 用户名称 /// public string UserName { get; set;} /// /// 头像 /// public string Avatar { get; set;} /// /// 性别 /// public Gender Sex { get; set; } /// /// 电话 /// public string Phone { get; set; } /// /// 职业 /// public string Self { get; set; } /// /// /// public UserEnum Type { get; set; } /// /// /// public string OpenID { get; set; } /// /// /// public string Describe { get; set; } /// /// 租户信息 /// public TenantOutput Tenant { get; set; } /// /// 公司信息 /// public CompanyDto companyDto { get; set; } } }