using System; using System.Collections.Generic; using System.Text; namespace Operater.DTO.System { public class LoginUserInfo { /// /// id /// public string Id { get; set; } /// /// 账号类型 /// public string AccountType { get; set; } /// /// 1688token /// public string AlibabaToken { get; set; } /// /// 有赞token /// public string YzToken { get; set; } /// /// 有赞店铺id /// public string YzShopId { get; set; } /// /// 微信openid /// public string OpenId { get; set; } } public class TokenUserInfo : LoginUserInfo { /// /// 过期时间 /// public DateTime? ExpirationTime { get; set; } } public class IgnoreapiModel { /// /// api /// public List apiList { get; set; } /// /// 过期时间 /// public DateTime ExpirationTime { get; set; } } }