ApplyPrizeViewController.h 844 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  ApplyPrizeViewController.h
//  Lighting
//
//  Created by 曹云霄 on 2016/11/22.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"
10
#import "PrizeListModel.h"
11 12 13
@interface ApplyPrizeViewController : BaseViewController


14 15 16
/**
 兑换奖品
 */
17 18
@property (weak, nonatomic) IBOutlet UIScrollView *exchangeScrollView;

19 20 21
/**
 收货人地址
 */
22 23
@property (weak, nonatomic) IBOutlet UITextField *consigneeTextField;

24 25 26
/**
 电话号码
 */
27 28
@property (weak, nonatomic) IBOutlet UITextField *mobileTextField;

29 30 31 32
/**
 地址
 */
@property (weak, nonatomic) IBOutlet UIButton *addressButton;
33

34 35 36
/**
 详细地址
 */
37 38
@property (weak, nonatomic) IBOutlet UITextField *addressDetailsTextField;

39 40 41 42 43 44
/**
 兑换奖品
 */
@property (nonatomic,strong) NSArray<PrizeListModel *>*selectArray;


45 46

@end