SpotCheckTableViewCell.h 813 Bytes
Newer Older
admin's avatar
admin committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27
//
//  SpotCheckTableViewCell.h
//  redstar
//
//  Created by admin on 15/12/24.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
@class SpotCheckModel;

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

@property (nonatomic, strong) UILabel *alreadyLabel;
@property (nonatomic, strong) UILabel *allLabel;

@property (nonatomic, assign) CGFloat multiplier; // 乘数

@property (nonatomic, strong) UIImageView *alreadyView;
@property (nonatomic, strong) UIView *allView;

@property (nonatomic, strong) SpotCheckModel *spotCheck;
@end