Aucune description

FLThirdPayHelper.h 622B

123456789101112131415161718192021222324252627
  1. //
  2. // FLThirdPayHelper.h
  3. // FirstLink
  4. //
  5. // Created by 王孝道 on 15/5/18.
  6. // Copyright (c) 2015年 FirstLink. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #import "Order.h"
  10. #import "SubmitPaymentItem.h"
  11. #define WX_PREPARE_ID_REQ 900
  12. @interface FLThirdPayHelper : NSObject
  13. + (BOOL)isWXAppInstalled;
  14. + (void)getWxPayPrepayIdWithOrderID:(NSString *)orderID delegate:(id <FLNetworkDelegate>)delegate;
  15. + (void)alipayLaunchWithPaymentModel:(SubmitPaymentItem *)paymentModel;
  16. + (void)aliGolbalPayWithPaymentModel:(SubmitPaymentItem *)paymentModel;
  17. + (void)wxPayWithPrepayID:(NSString *)prepayID;
  18. @end