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
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// PrizeExchangeDetailsViewController.h
// Lighting
//
// Created by 曹云霄 on 2016/11/22.
// Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//
#import "BaseViewController.h"
/**
cellType
- ExchangeBillInformation: 兑换单信息
- ReceivingInformation: 收货信息
- RewardInformation: 奖励信息
- LogisticsInformation: 物流信息
*/
typedef NS_ENUM(NSInteger,CellType){
ExchangeBillInformation = 0,
ReceivingInformation,
RewardInformation,
LogisticsInformation
};
@interface PrizeExchangeDetailsViewController : BaseViewController
@property (weak, nonatomic) IBOutlet UITableView *prizeExchangeDetailsTableView;
/**
兑奖单单号
*/
@property (nonatomic,copy) NSString *prizeBillNumber;
/**
是否有物流信息
*/
@property (nonatomic,assign) BOOL isDelivery;
@end