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