mirror of
https://gitee.com/ThingsGateway/ThingsGateway.git
synced 2025-10-21 19:14:30 +08:00
85 lines
2.6 KiB
C#
85 lines
2.6 KiB
C#
//------------------------------------------------------------------------------
|
||
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
|
||
// 此代码版权(除特别声明外的代码)归作者本人Diego所有
|
||
// 源代码使用协议遵循本仓库的开源协议及附加协议
|
||
// Gitee源代码仓库:https://gitee.com/diego2098/ThingsGateway
|
||
// Github源代码仓库:https://github.com/kimdiego2098/ThingsGateway
|
||
// 使用文档:https://thingsgateway.cn/
|
||
// QQ群:605534569
|
||
//------------------------------------------------------------------------------
|
||
|
||
using ThingsGateway.Common.List;
|
||
|
||
namespace ThingsGateway.Admin.Application;
|
||
|
||
/// <summary>
|
||
/// 会话信息
|
||
/// </summary>
|
||
|
||
[SugarTable("verificatinfo", TableDescription = "验证缓存表")]
|
||
[Tenant(SqlSugarConst.DB_TokenCache)]
|
||
public class VerificatInfo : PrimaryIdEntity
|
||
{
|
||
/// <summary>
|
||
/// 客户端ID列表
|
||
/// </summary>
|
||
[AutoGenerateColumn(Ignore = true)]
|
||
[SugarColumn(ColumnDescription = "客户端ID列表", IsNullable = true, IsJson = true)]
|
||
public ConcurrentList<string> ClientIds { get; set; } = new();
|
||
|
||
/// <summary>
|
||
/// 验证Id
|
||
/// </summary>
|
||
[AutoGenerateColumn(Ignore = true)]
|
||
public long UserId { get; set; }
|
||
|
||
/// <summary>
|
||
/// 验证Id
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true)]
|
||
[SugarColumn(ColumnDescription = "Id", IsPrimaryKey = true)]
|
||
[IgnoreExcel]
|
||
public override long Id { get; set; }
|
||
|
||
/// <summary>
|
||
/// 登录IP
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true, Width = 200)]
|
||
public string LoginIp { get; set; }
|
||
|
||
/// <summary>
|
||
/// 登录时间
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true, Width = 200)]
|
||
public DateTime LoginTime { get; set; }
|
||
|
||
/// <summary>
|
||
/// 在线状态
|
||
/// </summary>
|
||
[Newtonsoft.Json.JsonIgnore]
|
||
[System.Text.Json.Serialization.JsonIgnore]
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true, Width = 120)]
|
||
[SugarColumn(IsIgnore = true)]
|
||
public bool Online => ClientIds.Count > 0;
|
||
|
||
/// <summary>
|
||
/// 过期时间
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true)]
|
||
public int Expire { get; set; }
|
||
|
||
/// <summary>
|
||
/// 超时时间
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true)]
|
||
public DateTime VerificatTimeout { get; set; }
|
||
|
||
/// <summary>
|
||
/// 登录设备
|
||
/// </summary>
|
||
[AutoGenerateColumn(Filterable = true, Sortable = true, Width = 100)]
|
||
public string Device { get; set; }
|
||
|
||
|
||
}
|