基础服务api
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.
 
 

24 lines
757 B

  1. using BPA.SAAS.Manage.Application.Org.Dtos.Role;
  2. using BPA.SAAS.Manage.Core.Base;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  6. using System.Text;
  7. using System.Threading.Tasks;
  8. namespace BPA.SAAS.Manage.Application.Org.Interface
  9. {
  10. public interface IRoleService
  11. {
  12. Task<PageUtil> Page(RoleDtoPageInput input);
  13. Task<bool> Add(RoleDtoInput input);
  14. Task<bool> Update(RoleDtoInput input);
  15. Task<bool> Delete(List<string> input);
  16. Task<List<QueryRoleMenuListDto>> GetMenuRole(string RoleId);
  17. Task<bool> AddOrUpdateMenuRole(RoleMenuDtoInput input);
  18. Task<bool> Disable(string Id);
  19. Task<bool> Enable(string Id);
  20. Task<Dictionary<string, object>> GetRole();
  21. }
  22. }