添加项目文件。
This commit is contained in:
40
system/Tnb.OAuth/Dto/CurrentUserModelOutput.cs
Normal file
40
system/Tnb.OAuth/Dto/CurrentUserModelOutput.cs
Normal file
@@ -0,0 +1,40 @@
|
||||
using JNPF.DependencyInjection;
|
||||
using JNPF.Systems.Entitys.Dto.Module;
|
||||
using JNPF.Systems.Entitys.Dto.ModuleButton;
|
||||
using JNPF.Systems.Entitys.Dto.ModuleColumn;
|
||||
using JNPF.Systems.Entitys.Dto.ModuleDataAuthorizeScheme;
|
||||
using JNPF.Systems.Entitys.Dto.ModuleForm;
|
||||
|
||||
namespace JNPF.OAuth.Dto;
|
||||
|
||||
/// <summary>
|
||||
/// 当前用户模型输出.
|
||||
/// </summary>
|
||||
[SuppressSniffer]
|
||||
public class CurrentUserModelOutput
|
||||
{
|
||||
/// <summary>
|
||||
/// 菜单权限.
|
||||
/// </summary>
|
||||
public List<ModuleOutput> moduleList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 按钮权限.
|
||||
/// </summary>
|
||||
public List<ModuleButtonOutput> buttonList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 列表权限.
|
||||
/// </summary>
|
||||
public List<ModuleColumnOutput> columnList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 数据权限.
|
||||
/// </summary>
|
||||
public List<ModuleDataAuthorizeSchemeOutput> resourceList { get; set; }
|
||||
|
||||
/// <summary>
|
||||
/// 表单权限.
|
||||
/// </summary>
|
||||
public List<ModuleFormOutput> formList { get; set; }
|
||||
}
|
||||
Reference in New Issue
Block a user