ISystemLabelService.cs 850 B

12345678910111213141516171819202122232425
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using GxPress.Common.Page;
  4. using GxPress.Request.SystemLabel;
  5. using GxPress.Result.SystemLabel;
  6. namespace GxPress.Service.Interface.SystemLabel
  7. {
  8. public interface ISystemLabelService : IService
  9. {
  10. Task<PagedList<SystemLabelResult>> GetAllPageAsync(SystemLabelRequest request);
  11. Task<IEnumerable<SystemLabelResult>> GetAllAsync();
  12. /// <summary>
  13. /// 获取明栏分页
  14. /// </summary>
  15. /// <param name="request"></param>
  16. /// <returns></returns>
  17. Task<PagedList<SystemLabelResult>> GetAllStarLablePageAsync(Common.Page.PageParameter request);
  18. /// <summary>
  19. /// 获取明栏
  20. /// </summary>
  21. /// <returns></returns>
  22. Task<IEnumerable<SystemLabelResult>> GetStarLableAllAsync();
  23. }
  24. }