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

#import <UIKit/UIKit.h>
10
#import "PromotionLuckDrawResultModel.h"
11 12 13 14 15 16 17 18
@interface PromotionalTableViewCell : UITableViewCell


/**
 *  促销描述
 */
@property (weak, nonatomic) IBOutlet UILabel *promotionalTitleLabel;

19 20 21 22 23 24

/**
 促销信息
 */
@property (nonatomic,copy) JSONModel *promotionModel;

25 26 27 28 29 30

/**
 *  抽奖结果
 */
@property (nonatomic,copy) PromotionLuckDrawResultModel *model;

31 32


33
@end