using System; using YBDevice.Entity; namespace Nirvana.Common { /// /// 系统用户实体 /// public class OperatorModel { /// /// 关联的客户ID /// public int BusinessId { get; set; } /// /// 客户编码 /// public string BusinessCode { get; set; } /// /// 用户ID /// public int UserId { get; set; } /// /// 用户实际名称 /// public string RealName { get; set; } /// /// 角色ID /// public Guid RoleId { get; set; } /// /// 登录的IP /// public string LoginIPAddress { get; set; } /// /// 登录时间 /// public DateTime LoginTime { get; set; } /// /// 账户类型 /// public AccountType AccountType { get; set; } /// /// 是否为超级管理员 /// public bool IsSuper { get; set; } = false; /// /// 账户类型,1-后台添加,2-小程序自助注册 /// public int Type { get; set; } } }