e41dfa09
李曜臣
泰鄂版菜单;租户列表
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
|
using Yi.Framework.Rbac.Domain.Shared.Enums;
namespace FoodLabeling.Th.Application.Contracts.Dtos.RbacMenu;
/// <summary>
/// 泰额版新增菜单入参
/// </summary>
public class ThRbacMenuCreateInputVo
{
public string MenuName { get; set; } = string.Empty;
/// <summary>
/// 父级 Id(menu 表为字符串;根节点为 0)
/// </summary>
public string ParentId { get; set; } = "0";
public MenuTypeEnum MenuType { get; set; }
public MenuSourceEnum MenuSource { get; set; }
public string? PermissionCode { get; set; }
public string? Router { get; set; }
public string? Component { get; set; }
public string? RouterName { get; set; }
public string? MenuIcon { get; set; }
public int OrderNum { get; set; }
public bool State { get; set; } = true;
public bool IsShow { get; set; } = true;
}
|