//
//  CalibrationDetailCollectionCell.h
//  Lighting
//
//  Created by 曹云霄 on 2017/3/15.
//  Copyright © 2017年 上海勾芒科技有限公司. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "CustomTOForumtypeEntity.h"

@interface CalibrationDetailCollectionCell : UICollectionViewCell


/**
 月份
 */
@property (weak, nonatomic) IBOutlet UILabel *monthLabel;

/**
 下标
 */
@property (nonatomic,strong) NSIndexPath *indexPath;


/**
 刷新cell

 @param entity 数据源
 */
- (void)refreshCell:(CustomTOForumtypeEntity *)entity;


#pragma mark -时间轴选中状态
- (void)timeLineSelected;

#pragma mark -时间轴默认状态
- (void)timeLineDefauld;

#pragma mark -时间轴不可选状态
- (void)timeLineNotChoose;

@end