ISystemLableMediaRepository.cs 786 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Request.SystemLabel;
  5. namespace GxPress.Repository.Interface.SystemLabel
  6. {
  7. public interface ISystemLableMediaRepository : IRepository
  8. {
  9. Task<Entity.SystemLabel.SystemLableMedia> GetAsync(int id);
  10. /// <summary>
  11. /// 根据标签ID获取媒体ID
  12. /// </summary>
  13. /// <param name="lableId"></param>
  14. /// <returns></returns>
  15. Task<IEnumerable<int>> GetMediaIdsAsync(int lableId);
  16. Task<bool> DeleteAsync(List<int> ids);
  17. /// <summary>
  18. /// 添加
  19. /// </summary>
  20. /// <param name="request"></param>
  21. /// <returns></returns>
  22. Task<bool> InsertAsync(SystemLableMediaRequest request);
  23. }
  24. }