RQHTTPService+RQGetConfigKey.h 623 B

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