IUserRoleNavMapping.cs 543 B

1234567891011121314151617181920212223
  1. using CZFW.Framework.Interface;
  2. using CZFW.Framework.Model.ViewModel;
  3. using CZKJ.GBRS2.Entity;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Text;
  7. namespace CZKJ.GBRS2.Interface
  8. {
  9. public interface IUserRoleNavMapping
  10. {
  11. IList<NavigationModel> GetNavigationTreeByRoleId(int roleId);
  12. IList<NavigationModel> SetTree(IList<NavigationModel> list, string parentMark);
  13. ResultModel RemoveNavByRole(int RoleId,int navId);
  14. ResultModel AddNavByRole(int roleId, IList<int> navIds);
  15. }
  16. }