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.

20 lines
421 B
C#

using System;
using System.Linq;
using System.Text;
using SqlSugar;
namespace Admin.Core.Api.PLTBusiness.Entity
{
public class TokenData
{
/// <summary>
/// Token(后续请求需要携带这个Token)
/// </summary>
public string token { get; set; }
/// <summary>
/// Token失效时间
/// </summary>
public int expiration { get; set; }
}
}