IRoleApplication.cs 310 B

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