client_Hale
2019-01-08 6cce76e45ab258d46698af74667360af0ba7715c
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
//
//  YLOrder.h
//  YileSDK
//
//  Created by 韩凯 on 7/9/15.
//  Copyright (c) 2015 江苏易乐网络科技有限公司. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
/**
 *  充值订单类
 */
@interface YLOrder : NSObject
 
@property (nonatomic, strong) NSString * identifier;
 
@property (nonatomic, strong) NSString * cpOrderId;
 
@property (nonatomic, strong) NSString * title;
 
@property (nonatomic, assign) float      total;
 
@property (nonatomic, strong) NSString * cpInfo;
 
@end