namespace Core.Web.WebHelper.UtilityModel
{
public class UserInfo
{
//员工id
public int userId { get; set; }
///
/// 员工姓名
///
public string userName { get; set; }
//员工工号
public int userEid { get; set; }
//员工分机号
public string FJH { get; set; }
//员工组别id
public decimal userGroupId { get; set; }
//部门id
public decimal deptId { get; set; }
//营业部id
public decimal saleDeptId { get; set; }
public string saleDeptCode { get; set; }
//公司id
public decimal companyId { get; set; }
//公司业务
public string companyBusiness { get; set; }
//用户角色
public int[] userRoleId { get; set; }
//用户角色名称
public string userRoleName { get; set; }
//用户所管理的组id
public decimal[] userOnGroupId { get; set; }
//用户权限
// public string[] userRightId { get; set; }
//LoginLogId
public decimal logInLogID { get; set; }
public string userRoleCode { get; set; }
///
/// 权限Codes
///
public string[] RightCodes { get; set; }
}
}