2023-04-15 22:44:33 +08:00
|
|
|
using System;
|
|
|
|
|
using Yi.Furion.Core.Rbac.Enums;
|
2023-04-13 21:12:06 +08:00
|
|
|
|
2023-04-15 22:44:33 +08:00
|
|
|
namespace Yi.Furion.Core.Rbac.Dtos.Menu
|
2023-04-13 21:12:06 +08:00
|
|
|
{
|
|
|
|
|
/// <summary>
|
|
|
|
|
/// Menu输入创建对象
|
|
|
|
|
/// </summary>
|
|
|
|
|
public class MenuCreateInputVo
|
|
|
|
|
{
|
|
|
|
|
public long Id { get; set; }
|
|
|
|
|
public DateTime CreationTime { get; set; } = DateTime.Now;
|
|
|
|
|
public long? CreatorId { get; set; }
|
|
|
|
|
public bool State { get; set; }
|
|
|
|
|
public string MenuName { get; set; } = string.Empty;
|
|
|
|
|
public MenuTypeEnum MenuType { get; set; } = MenuTypeEnum.Menu;
|
|
|
|
|
public string PermissionCode { get; set; }
|
|
|
|
|
public long ParentId { get; set; }
|
|
|
|
|
public string MenuIcon { get; set; }
|
|
|
|
|
public string Router { get; set; }
|
|
|
|
|
public bool IsLink { get; set; }
|
|
|
|
|
public bool IsCache { get; set; }
|
|
|
|
|
public bool IsShow { get; set; } = true;
|
|
|
|
|
public string Remark { get; set; }
|
|
|
|
|
public string Component { get; set; }
|
|
|
|
|
public string Query { get; set; }
|
2023-04-19 22:54:33 +08:00
|
|
|
public int OrderNum { get; set; }
|
2023-04-13 21:12:06 +08:00
|
|
|
}
|
|
|
|
|
}
|