12345678910111213141516171819202122232425 |
- //
- // RQHTTPService+RQGetConfigKey.h
- // YYXC
- //
- // Created by 张嵘 on 2022/4/22.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import "RQHTTPService.h"
- /// 根据参数键名查询参数值
- #define RQ_GET_ConfigKey @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/gzpt/userInfo/configKey"
- NS_ASSUME_NONNULL_BEGIN
- @interface RQHTTPService (RQGetConfigKey)
- /**
- 根据字典类型查询字典数据信息
- @param dictType 路径
- @return Returns a signal which will send complete, or error.
- */
- - (RACSignal *)getConfigKeyWithDictType:(NSString *)dictType;
- @end
- NS_ASSUME_NONNULL_END
|