Files
tnb.server/system/Tnb.Systems.Entitys/Entity/Permission/UserEntity.part.cs
2023-06-16 17:11:50 +08:00

17 lines
341 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; }
}