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