// // 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