lpw
2021-04-06 27dcabd3548e77412b033c4f99414425b3cfdac3
commit | author | age
d1f6ab 1 //
H 2 //  WAPayChannel.h
3 //  WASdkIntfUI
4 //
5 //  Created by hank on 16/4/28.
6 //  Copyright © 2016年 GHW-T-01. All rights reserved.
7 //  支付渠道
8
9 #import <Foundation/Foundation.h>
10
11 @interface WAPayChannel : NSObject
12
13 @property (nonatomic, strong) NSString *channelProductId; // 支付渠道平台产品编号
14 @property (nonatomic, assign) NSInteger payChannelId;   // 支付方式编号
15 @property (nonatomic, strong) NSString *payChannelName; // 支付方式名称 如APPLE 、GOOGLE
16 @property (nonatomic, assign) NSInteger payMethod;      // 支付方式 1 native、2 webview
17 @property (nonatomic, assign) NSInteger status;         // 状态 -1 关闭 1 打开
18 @property (nonatomic, strong) NSString *logoUrl;        // 支付方式图标下载地址
19
20 @end