123456789101112131415161718192021222324252627282930 |
- //
- // RQHTTPService+RQGetTreeList.h
- // jiaPei
- //
- // Created by 张嵘 on 2021/10/25.
- // Copyright © 2021 JCZ. All rights reserved.
- // 查询教学视频分类树形列表
- #import "RQHTTPService.h"
- #import "RQTreeListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetTreeList)
- /**
- 查询教学视频分类树形列表
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getTreeList;
- /**
- 根据分类ID查询教学视频
- @param videoTypeId 分类ID
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getTeachingVideoByTypeId:(NSInteger)videoTypeId;
- @end
- NS_ASSUME_NONNULL_END
|