tuiwucarrer/Admin.NET/Admin.NET.Application/Service/CePing/BusCustomMenus/Dto/BusCustomMenusOutput.cs

52 lines
1.1 KiB
C#

using System;
namespace Admin.NET.Application
{
/// <summary>
/// 学生菜单输出参数
/// </summary>
public class BusCustomMenusOutput
{
/// <summary>
/// 根菜单
/// </summary>
public long RootId { get; set; }
/// <summary>
/// 链接类型
/// </summary>
public int UrlType { get; set; }
/// <summary>
/// 菜单名称
/// </summary>
public string MenuName { get; set; }
/// <summary>
/// 菜单icon
/// </summary>
public string Icon { get; set; }
/// <summary>
/// 路由地址
/// </summary>
public string Url { get; set; }
/// <summary>
/// 数据排序
/// </summary>
public int Sort { get; set; }
/// <summary>
/// 租户id
/// </summary>
public long TenantId { get; set; }
/// <summary>
/// Id主键
/// </summary>
public long Id { get; set; }
}
}