Files
tnb.server/system/Tnb.Systems.Entitys/Entity/Permission/UserEntity.part.cs
2023-06-19 08:44:06 +08:00

17 lines
350 B
C#

using JNPF.Common.Const;
using JNPF.Common.Contracts;
using SqlSugar;
namespace JNPF.Systems.Entitys.Permission;
/// <summary>
/// 用户信息基类.
/// </summary>
public partial class UserEntity
{
/// <summary>
/// 登录类型
/// </summary>
[SugarColumn(IsIgnore = true)]
public string LoginType { get; set; } = "web";
}