using Microsoft.Azure.Cosmos.Table; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Service.Models.Core { /// /// 登录信息 /// [TableSpace(Name = "Core")] public class LoginInfo : TableEntity { public string TeamModelId { get; set; } public string Phone { get; set; } public string Ticket { get; set; } public string Name { get; set; } public string Token { get; set; } public string CountryCode { get; set; } /// /// 登录时间 /// public long LoginTime { get; set; } /// /// 超时时间 /// public long Timeout { get; set; } /// /// 到期时间 /// public long Expires { get; set; } /// /// 作用域 /// public string Scope { get; set; } } }