2025-07-21 18:49:49 +08:00
|
|
|
|
2025-07-24 18:09:46 +08:00
|
|
|
using DMS.Core.Enums;
|
2025-07-21 18:49:49 +08:00
|
|
|
using DMS.Core.Models;
|
|
|
|
|
|
|
|
|
|
namespace DMS.Core.Interfaces.Repositories
|
|
|
|
|
{
|
|
|
|
|
public interface IMenuRepository:IBaseRepository<MenuBean>
|
|
|
|
|
{
|
2025-07-24 18:09:46 +08:00
|
|
|
Task<int> DeleteMenuTreeByIdAsync(int id);
|
|
|
|
|
Task<int> DeleteMenuTreeByTargetIdAsync(MenuType menuType, int targetId);
|
2025-07-21 18:49:49 +08:00
|
|
|
}
|
|
|
|
|
}
|