using System; using System.Collections.Generic; using System.Text; namespace Nirvana.Common { /// /// 系统用户实体 /// public class OperatorModel { /// /// 关联的客户ID /// public Guid BusinessId { get; set; } /// /// 客户编码 /// public string BusinessCode { get; set; } = ""; /// /// 用户ID /// public Guid 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 int AccountType { get; set; } /// /// 是否为超级管理员 /// public bool IsSuper { get; set; } = false; } }