You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
725 B
23 lines
725 B
using Tiobon.Core.IServices.BASE;
|
|
using Tiobon.Core.Model.Models;
|
|
|
|
namespace Tiobon.Core.IServices;
|
|
|
|
/// <summary>
|
|
/// RoleModulePermissionServices
|
|
/// </summary>
|
|
public interface IRoleModulePermissionServices :IBaseServices<RoleModulePermission>
|
|
{
|
|
|
|
Task<List<RoleModulePermission>> GetRoleModule();
|
|
Task<List<TestMuchTableResult>> QueryMuchTable();
|
|
Task<List<RoleModulePermission>> RoleModuleMaps();
|
|
Task<List<RoleModulePermission>> GetRMPMaps();
|
|
/// <summary>
|
|
/// 批量更新菜单与接口的关系
|
|
/// </summary>
|
|
/// <param name="permissionId">菜单主键</param>
|
|
/// <param name="moduleId">接口主键</param>
|
|
/// <returns></returns>
|
|
Task UpdateModuleId(long permissionId, long moduleId);
|
|
}
|
|
|