IAppStartPageRepository.cs 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. using System.Collections.Generic;
  2. using System.Threading.Tasks;
  3. using Datory;
  4. using GxPress.Request.AppStartPage;
  5. namespace GxPress.Repository.Interface.AppStartPage
  6. {
  7. public interface IAppStartPageRepository : IRepository
  8. {
  9. /// <summary>
  10. /// 获取 APP启动 1IOS 2Android
  11. /// </summary>
  12. /// <param name="appTypeId"></param>
  13. /// <returns></returns>
  14. Task<Entity.tede2.AppStartPage.AppStartPage> GetAsync(int appTypeId);
  15. /// <summary>
  16. /// 查询
  17. /// </summary>
  18. /// <returns></returns>
  19. Task<IEnumerable<Entity.tede2.AppStartPage.AppStartPage>> GetAllAsync();
  20. /// <summary>
  21. /// 删除
  22. /// </summary>
  23. /// <param name="id"></param>
  24. /// <returns></returns>
  25. Task<bool> DeleteAsync(int id);
  26. /// <summary>
  27. /// 修改
  28. /// </summary>
  29. /// <param name="model"></param>
  30. /// <returns></returns>
  31. Task<bool> UpdateAsync(AppStartPageUpdateRequest request);
  32. /// <summary>
  33. /// 添加
  34. /// </summary>
  35. /// <param name="model"></param>
  36. /// <returns></returns>
  37. Task<bool> InsertAsync(Entity.tede2.AppStartPage.AppStartPage model);
  38. }
  39. }