2023-12-11 09:55:12 +08:00
|
|
|
using Yi.Framework.Rbac.Domain.Shared.Enums;
|
2023-04-13 21:12:06 +08:00
|
|
|
|
2023-12-11 09:55:12 +08:00
|
|
|
namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Menu
|
2023-04-13 21:12:06 +08:00
|
|
|
{
|
|
|
|
|
public class MenuUpdateInputVo
|
|
|
|
|
{
|
2023-12-11 09:55:12 +08:00
|
|
|
public Guid Id { get; set; }
|
|
|
|
|
public Guid? CreatorId { get; set; }
|
2023-04-13 21:12:06 +08:00
|
|
|
public bool State { get; set; }
|
|
|
|
|
public string MenuName { get; set; } = string.Empty;
|
|
|
|
|
public MenuTypeEnum MenuType { get; set; } = MenuTypeEnum.Menu;
|
2023-04-20 23:08:21 +08:00
|
|
|
public string? PermissionCode { get; set; }
|
2023-12-11 09:55:12 +08:00
|
|
|
public Guid ParentId { get; set; }
|
2023-04-20 23:08:21 +08:00
|
|
|
public string? MenuIcon { get; set; }
|
|
|
|
|
public string? Router { get; set; }
|
2023-04-13 21:12:06 +08:00
|
|
|
public bool IsLink { get; set; }
|
|
|
|
|
public bool IsCache { get; set; }
|
|
|
|
|
public bool IsShow { get; set; } = true;
|
2023-04-20 23:08:21 +08:00
|
|
|
public string? Remark { get; set; }
|
|
|
|
|
public string? Component { get; set; }
|
|
|
|
|
public string? Query { get; set; }
|
2023-09-25 18:16:20 +08:00
|
|
|
public int OrderNum { get; set; }
|
2024-09-07 13:43:00 +08:00
|
|
|
public string? RouterName { get; set; }
|
2023-04-13 21:12:06 +08:00
|
|
|
}
|
|
|
|
|
}
|