RQHTTPService+RQGetTreeList.h 662 B

123456789101112131415161718192021222324252627282930
  1. //
  2. // RQHTTPService+RQGetTreeList.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2021/10/25.
  6. // Copyright © 2021 JCZ. All rights reserved.
  7. // 查询教学视频分类树形列表
  8. #import "RQHTTPService.h"
  9. #import "RQTreeListModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface RQHTTPService (RQGetTreeList)
  12. /**
  13. 查询教学视频分类树形列表
  14. @return Returns a signal which will send complete, or error.
  15. */
  16. - (RACSignal *)getTreeList;
  17. /**
  18. 根据分类ID查询教学视频
  19. @param videoTypeId 分类ID
  20. @return Returns a signal which will send complete, or error.
  21. */
  22. - (RACSignal *)getTeachingVideoByTypeId:(NSInteger)videoTypeId;
  23. @end
  24. NS_ASSUME_NONNULL_END