You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
581 B
C#
28 lines
581 B
C#
using Admin.Core.Model.Sys;
|
|
using SqlSugar;
|
|
using System;
|
|
using System.Collections.Generic;
|
|
using System.Text;
|
|
|
|
namespace Admin.Core.Model
|
|
{
|
|
/// <summary>
|
|
/// 用户权限
|
|
/// </summary>
|
|
public class UserPermission
|
|
{
|
|
/// <summary>
|
|
/// 用户
|
|
/// </summary>
|
|
public SysUser SysUser { get; set; }
|
|
/// <summary>
|
|
/// 角色
|
|
/// </summary>
|
|
public List<string> Roles { get; set; }
|
|
/// <summary>
|
|
/// 权限
|
|
/// </summary>
|
|
public List<string> Perms { get; set; }
|
|
}
|
|
}
|