/***********************************************************************
* Project: CoreCms
* ProjectName: 核心内容管理系统
* Web: https://www.corecms.net
* Author: 大灰灰
* Email: jianweie@163.com
* CreateTime: 2021/1/31 21:45:10
* Description: 暂无
***********************************************************************/
using System.Collections.Generic;
using System.ComponentModel.DataAnnotations;
using SqlSugar;
namespace CoreCms.Net.Model.Entities
{
///
/// 用户表扩展
///
public partial class SysUser
{
///
/// 权限序列
///
[Display(Name = "权限序列")]
[SugarColumn(IsIgnore = true)]
public string roleIds { get; set; }
///
/// 权限列表
///
[Display(Name = "权限序列")]
[SugarColumn(IsIgnore = true)]
public List roles { get; set; }
///
/// 组织机构名称
///
[Display(Name = "组织机构名称")]
[SugarColumn(IsIgnore = true)]
public string organizationName { get; set; }
}
}