lpw
23 hours ago 303b8f43a0f25b1bd791061e0d0ba3d862238386
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
//
//  WAPayChannel.h
//  WASdkIntfUI
//
//  Created by hank on 16/4/28.
//  Copyright © 2016年 GHW-T-01. All rights reserved.
//  支付渠道
 
#import <Foundation/Foundation.h>
 
@interface WAPayChannel : NSObject
 
@property (nonatomic, strong) NSString *channelProductId; // 支付渠道平台产品编号
@property (nonatomic, assign) NSInteger payChannelId;   // 支付方式编号
@property (nonatomic, strong) NSString *payChannelName; // 支付方式名称 如APPLE 、GOOGLE
@property (nonatomic, assign) NSInteger payMethod;      // 支付方式 1 native、2 webview -1 充值中心支付
@property (nonatomic, assign) NSInteger status;         // 状态 -1 关闭 1 打开
@property (nonatomic, strong) NSString *logoUrl;        // 支付方式图标下载地址
 
 
@property (nonatomic, strong) NSString *currency;       //币种
@property (nonatomic, assign) double discountAmount;    // 折扣后金额 *100,为购买这个商品需要消耗的待见金额
@property (nonatomic, assign) NSInteger discount;       // 折扣价格
@property (nonatomic, assign) double amount;            // 基准金额  展示需要$xx 购买代金券的时候,使用apple支付渠道的数据
 
 
 
 
@end