LookOnLineTableViewCell.h 643 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
//
//  LookOnLineTableViewCell.h
//  redstar
//
//  Created by admin on 15/11/28.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
admin's avatar
admin committed
10
#import "LookOnLineModel.h"
11 12 13 14 15 16 17 18

@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; // 进度

admin's avatar
admin committed
19 20
@property (nonatomic, strong) LookOnLineModel *lookOnLine; // 进度

21
@end