InspectTaskDetailCell.h 1.1 KB
Newer Older
1
//
admin's avatar
admin committed
2
//  InspectTaskDetailCell.h
3 4
//  redstar
//
admin's avatar
admin committed
5
//  Created by admin on 15/12/12.
6 7 8 9
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
admin's avatar
admin committed
10
#import "TaskDetailModel.h"
11

admin's avatar
admin committed
12 13
@interface InspectTaskDetailCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel;
admin's avatar
admin committed
14

15 16 17 18 19 20 21 22 23 24
@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; // 剩余天数
admin's avatar
admin committed
25
@property (nonatomic, strong) UIImageView *alreadyView;
26
@property (nonatomic, strong) UIView *allView;
admin's avatar
admin committed
27 28 29 30 31

@property (nonatomic, strong) UILabel *introDetailLabel;

@property (nonatomic, strong) TaskDetailModel *taskDetail;

32
@end