ISpecialLabelRepository.cs 1.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Common.Page;
  5. using GxPress.Request.SpecialLabel;
  6. namespace GxPress.Repository.Interface.SpecialLabel
  7. {
  8. public interface ISpecialLabelRepository : IRepository
  9. {
  10. /// <summary>
  11. /// 添加
  12. /// </summary>
  13. /// <param name="model"></param>
  14. /// <returns></returns>
  15. Task<int> InsertAsync(Entity.SystemLabel.SpecialLabel model);
  16. /// <summary>
  17. /// 修改
  18. /// </summary>
  19. /// <param name="model"></param>
  20. /// <returns></returns>
  21. Task<bool> UpdateAsync(Entity.SystemLabel.SpecialLabel model);
  22. /// <summary>
  23. /// 获取
  24. /// </summary>
  25. /// <param name="id"></param>
  26. /// <returns></returns>
  27. Task<Entity.SystemLabel.SpecialLabel> GetAsync(int id);
  28. /// <summary>
  29. /// 删除
  30. /// </summary>
  31. /// <param name="id"></param>
  32. /// <returns></returns>
  33. Task<bool> DeleteAsync(int id);
  34. /// <summary>
  35. /// 获取类型下的数据
  36. /// </summary>
  37. /// <param name="typeValue"></param>
  38. /// <returns></returns>
  39. Task<IEnumerable<Entity.SystemLabel.SpecialLabel>> GetAllAsync(int typeValue,int pageSize=10);
  40. /// <summary>
  41. ///特使标签数据
  42. /// </summary>
  43. /// <param name="typeValue"></param>
  44. /// <returns></returns>
  45. Task<PagedList<Entity.SystemLabel.SpecialLabel>> GetAllAsync(SpecialLabelSearchRequest request);
  46. }
  47. }