// // BreakThroughTableViewCell.h // Lighting // // Created by 曹云霄 on 2017/3/15. // Copyright © 2017年 上海勾芒科技有限公司. All rights reserved. // #import <UIKit/UIKit.h> @interface BreakThroughTableViewCell : UITableViewCell /** 关卡标题 */ @property (weak, nonatomic) IBOutlet UILabel *confirmTitle; /** 闯关状态 */ @property (weak, nonatomic) IBOutlet UIImageView *confirmStateImageView; /** 截止时间 */ @property (weak, nonatomic) IBOutlet UILabel *confirmTimeLabel; /** 数据源 */ @property (nonatomic,strong) TOPassLevelEntity *entity; @end