123456789101112131415161718192021222324252627 |
- //
- // FLThirdPayHelper.h
- // FirstLink
- //
- // Created by 王孝道 on 15/5/18.
- // Copyright (c) 2015年 FirstLink. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #import "Order.h"
- #import "SubmitPaymentItem.h"
- #define WX_PREPARE_ID_REQ 900
- @interface FLThirdPayHelper : NSObject
- + (BOOL)isWXAppInstalled;
- + (void)getWxPayPrepayIdWithOrderID:(NSString *)orderID delegate:(id <FLNetworkDelegate>)delegate;
- + (void)alipayLaunchWithPaymentModel:(SubmitPaymentItem *)paymentModel;
- + (void)aliGolbalPayWithPaymentModel:(SubmitPaymentItem *)paymentModel;
- + (void)wxPayWithPrepayID:(NSString *)prepayID;
- @end
|