feat(menu): 添加菜单树构建功能和相关接口

This commit is contained in:
wcg
2026-01-04 11:02:13 +08:00
parent f77c775229
commit 80d8ac2bc8
4 changed files with 71 additions and 2 deletions

View File

@@ -15,8 +15,8 @@ namespace Yi.Framework.Rbac.Application.Contracts.Dtos.Role
public int OrderNum { get; set; }
public List<Guid> DeptIds { get; set; }
public List<Guid>? DeptIds { get; set; }
public List<Guid> MenuIds { get; set; }
public List<Guid>? MenuIds { get; set; }
}
}