/*********************************************************************** * Project: CoreCms * ProjectName: 百分兵法管理系统 * Web: hhtp://chuanyin.com * Author: * Email: * CreateTime: 202403/02 * 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; } } }