Files
ThingsGateway/src/Admin/ThingsGateway.Admin.Application/Entity/VerificatInfo.cs
2248356998 qq.com f11b7f7ab4 10.9.37
2025-07-13 22:47:14 +08:00

85 lines
2.6 KiB
C#
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

//------------------------------------------------------------------------------
// 此代码版权声明为全文件覆盖,如有原作者特别声明,会在下方手动补充
// 此代码版权除特别声明外的代码归作者本人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; }
}