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

#import <UIKit/UIKit.h>
#import "ZanButton.h"
11
#import "QuestionDetailModel.h"
12 13 14 15 16 17 18 19

@interface QuestionDetailCell : UITableViewCell
@property (nonatomic, strong) UILabel *stateLabel; // 状态
@property (nonatomic, strong) ZanButton *thumbBtn; // 状态
@property (nonatomic, strong) UILabel *sortLabel; // 分类
@property (nonatomic, strong) UILabel *shopLabel; // 商场
@property (nonatomic, strong) UILabel *peopleLabel; // 提报人
@property (nonatomic, strong) UILabel *dateLabel; // 提报时间
admin's avatar
admin committed
20

21
@property (nonatomic, strong) QuestionDetailModel *questionDetail;
22
@end