// // InspectTaskDetailCell.h // redstar // // Created by admin on 15/12/12. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "TaskDetailModel.h" @interface InspectTaskDetailCell : UITableViewCell @property (nonatomic, strong) UILabel *titleLabel; @property (nonatomic, strong) UILabel *shopnameLabel; // 商店名称 @property (nonatomic, strong) UILabel *startDateLabel; // 起始时间 @property (nonatomic, strong) UILabel *overDateLabel; // 截止时间 @property (nonatomic, strong) UILabel *progressLabel; // 完成进度 @property (nonatomic, strong) UILabel *alreadyLabel; @property (nonatomic, strong) UILabel *allLabel; @property (nonatomic, assign) CGFloat multiplier; @property (nonatomic, strong) UIButton *unfoldBtn; @property (nonatomic, strong) UIImageView *arrowImageView; @property (nonatomic, strong) UILabel *dayLabel; // 剩余天数 @property (nonatomic, strong) UIImageView *alreadyView; @property (nonatomic, strong) UIView *allView; @property (nonatomic, strong) UILabel *introDetailLabel; @property (nonatomic, strong) TaskDetailModel *taskDetail; @end