PrizeExchangeDetailsViewController.h 863 Bytes
//
//  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