IAttachRepository.cs 830 B

1234567891011121314151617181920212223242526
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Common.Page;
  5. using GxPress.Request.Attach;
  6. namespace GxPress.Repository.Interface.Attach
  7. {
  8. public interface IAttachRepository : IRepository
  9. {
  10. Task<bool> DeleteAsync(int id);
  11. Task<PagedList<Entity.tede2.Attach.Attach>> GetAllAsync(AttachRequest request);
  12. Task<IEnumerable<Entity.tede2.Attach.Attach>> GetSearchAllAsync(AttachRequest request);
  13. Task<Entity.tede2.Attach.Attach> GetAsync(int id);
  14. Task<int> InsertAsync(Entity.tede2.Attach.Attach note);
  15. Task<bool> UpdateAsync(Entity.tede2.Attach.Attach note);
  16. /// <summary>
  17. /// 获取明栏
  18. /// </summary>
  19. /// <returns></returns>
  20. Task<IEnumerable<(int, string)>> GetStarLablesAsync();
  21. }
  22. }