// // ThroughHistoryCollectionViewCell.h // Lighting // // Created by 曹云霄 on 2017/3/3. // Copyright © 2017年 上海勾芒科技有限公司. All rights reserved. // #import @interface ThroughHistoryCollectionViewCell : UICollectionViewCell /** title */ @property (weak, nonatomic) IBOutlet UILabel *titleLabel; /** 状态图片 */ @property (weak, nonatomic) IBOutlet UIImageView *stateImageView; /** 截止时间 */ @property (weak, nonatomic) IBOutlet UILabel *endDateLabel; /** 剩余机会 */ @property (weak, nonatomic) IBOutlet UILabel *remainingOpportunityLabel; /** 数据源 */ @property (nonatomic,strong) TOPassLevelEntity *entity; @end