RQHTTPService+PostPrepareOrder.h 425 B

123456789101112131415161718192021
  1. //
  2. // RQHTTPService+PostPrepareOrder.h
  3. // SDJK
  4. //
  5. // Created by 张嵘 on 2021/10/28.
  6. // 微信支付下单
  7. #import "RQHTTPService.h"
  8. #import "RQPrepareOrderModel.h"
  9. NS_ASSUME_NONNULL_BEGIN
  10. @interface RQHTTPService (PostPrepareOrder)
  11. /**
  12. 微信支付下单
  13. @return Returns a signal which will send complete, or error.
  14. */
  15. - (RACSignal *)postPrepareOrderWithDictCode:(NSString *)dictCode;
  16. @end
  17. NS_ASSUME_NONNULL_END