LookOnLineTableViewCell.h 643 Bytes
//
//  LookOnLineTableViewCell.h
//  redstar
//
//  Created by admin on 15/11/28.
//  Copyright © 2015年 ZWF. All rights reserved.
//

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

@interface LookOnLineTableViewCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel; // 标题
@property (nonatomic, strong) UILabel *peopleLabel; // 起始日期
@property (nonatomic, strong) UILabel *startDate; // 起始日期
@property (nonatomic, strong) UILabel *overDate; // 截止日期
@property (nonatomic, strong) UILabel *progressLabel; // 进度

@property (nonatomic, strong) LookOnLineModel *lookOnLine; // 进度

@end