18 lines
534 B
C#
18 lines
534 B
C#
using New_College.IRepository.Base;
|
|
using New_College.Model.Models;
|
|
using System.Collections.Generic;
|
|
using System.Threading.Tasks;
|
|
|
|
namespace New_College.IRepository
|
|
{
|
|
/// <summary>
|
|
/// IRoleModulePermissionRepository
|
|
/// </summary>
|
|
public interface IRoleModulePermissionRepository : IBaseRepository<RoleModulePermission>//类名
|
|
{
|
|
Task<List<TestMuchTableResult>> QueryMuchTable();
|
|
Task<List<RoleModulePermission>> RoleModuleMaps();
|
|
Task<List<RoleModulePermission>> GetRMPMaps();
|
|
}
|
|
}
|