PrizeExchangeDetailsViewController.h 863 Bytes
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
//
//  PrizeExchangeDetailsViewController.h
//  Lighting
//
//  Created by 曹云霄 on 2016/11/22.
//  Copyright © 2016年 上海勾芒科技有限公司. All rights reserved.
//

#import "BaseViewController.h"


/**
 cellType

 - ExchangeBillInformation: 兑换单信息
 - ReceivingInformation:    收货信息
 - RewardInformation:       奖励信息
18
 - LogisticsInformation:    物流信息
19 20 21 22
 */
typedef NS_ENUM(NSInteger,CellType){
    ExchangeBillInformation = 0,
    ReceivingInformation,
23 24
    RewardInformation,
    LogisticsInformation
25 26 27
};

@interface PrizeExchangeDetailsViewController : BaseViewController
28 29


30 31
@property (weak, nonatomic) IBOutlet UITableView *prizeExchangeDetailsTableView;

曹云霄's avatar
曹云霄 committed
32 33 34 35 36
/**
 兑奖单单号
 */
@property (nonatomic,copy) NSString *prizeBillNumber;

37 38 39 40 41
/**
 是否有物流信息
 */
@property (nonatomic,assign) BOOL isDelivery;

42
@end