添加项目文件。

This commit is contained in:
2023-03-13 15:00:34 +08:00
parent 42bf06ca3e
commit 1d73df3235
1205 changed files with 185078 additions and 0 deletions

View File

@@ -0,0 +1,25 @@
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; }
}