IRoleApplication.cs 337 B

1234567891011121314
  1. using Hotline.Identity.Roles;
  2. using Hotline.Share.Dtos.Roles;
  3. using SqlSugar;
  4. using System;
  5. using System.Collections.Generic;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. namespace Hotline.Application.Users;
  10. public interface IRoleApplication
  11. {
  12. ISugarQueryable<Role> GetRuleItems(QueryRolesPagedDto dto);
  13. }