足力健后端,使用.netcore版本,合并1个项目使用

ISys_RoleFunctionRepository.cs 266B

12345678910111213
  1. using System.Common;
  2. using System;
  3. using System.Model;
  4. using System.Threading.Tasks;
  5. namespace System.IRepositories
  6. {
  7. public interface ISys_RoleFunctionRepository : IRepository<T_Sys_RoleFunction>
  8. {
  9. Task<object> GetMenuAsync(int roleid);
  10. }
  11. }