using Microsoft.Azure.Cosmos.Table; using Newtonsoft.Json; using System.Text.Json.Serialization; using TEAMModelOS.SDK.Context.Attributes.Azure; namespace TEAMModelOS.Service.Models.Core { /// /// 登录信息 /// [TableName(Name = "CoreLoginInfo")] public class LoginInfo : TableEntity { [JsonPropertyName("TEAMModelId")] [JsonProperty("TEAMModelId")] 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; } } }