From 29f61e1dc9e5121cae6d84594d3991cf02ff3115 Mon Sep 17 00:00:00 2001 From: wcg Date: Sun, 4 Jan 2026 11:05:53 +0800 Subject: [PATCH] =?UTF-8?q?feat(menu):=20=E6=B7=BB=E5=8A=A0=E8=8F=9C?= =?UTF-8?q?=E5=8D=95=E6=A0=91=E6=9E=84=E5=BB=BA=E5=8A=9F=E8=83=BD=E5=92=8C?= =?UTF-8?q?=E7=9B=B8=E5=85=B3=E6=8E=A5=E5=8F=A3?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../IServices/IMenuService.cs | 13 ++++++++++++- 1 file changed, 12 insertions(+), 1 deletion(-) diff --git a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IMenuService.cs b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IMenuService.cs index 26980101..da5b820a 100644 --- a/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IMenuService.cs +++ b/Yi.Abp.Net8/module/rbac/Yi.Framework.Rbac.Application.Contracts/IServices/IMenuService.cs @@ -1,6 +1,7 @@ using Volo.Abp.Application.Services; using Yi.Framework.Ddd.Application.Contracts; using Yi.Framework.Rbac.Application.Contracts.Dtos.Menu; +using Yi.Framework.Rbac.Domain.Shared.Dtos; namespace Yi.Framework.Rbac.Application.Contracts.IServices { @@ -9,6 +10,16 @@ namespace Yi.Framework.Rbac.Application.Contracts.IServices /// public interface IMenuService : IYiCrudAppService { - + /// + /// 获取所有菜单 + /// + /// + /// + Task> GetAllListAsync(MenuGetListInputVo input); + /// + /// 获取菜单树 + /// + /// 菜单树结构列表 + Task> GetTreeAsync(); } }