Files
tnb.server/system/Tnb.Systems.Entitys/Dto/Permission/UsersCurrent/UsersCurrentDefaultOrganizeInput.cs
2023-03-13 15:00:34 +08:00

25 lines
660 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
using JNPF.DependencyInjection;
namespace JNPF.Systems.Entitys.Dto.UsersCurrent;
/// <summary>
/// 用户切换3个默认 输入.
/// </summary>
[SuppressSniffer]
public class UsersCurrentDefaultOrganizeInput
{
/// <summary>
/// 默认切换类型Organize组织Position岗位Role角色System系统.
/// </summary>
public string majorType { get; set; }
/// <summary>
/// 默认切换Id组织Id、岗位Id、角色Id、系统Id.
/// </summary>
public string majorId { get; set; }
/// <summary>
/// 菜单类型 (1 代表 APP).
/// </summary>
public int menuType { get; set; }
}