QuestionDetailCell.h 773 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

@interface QuestionDetailCell : UITableViewCell
admin's avatar
admin committed
14
@property (nonatomic, strong) UILabel *questionName; // 问题名称
15 16 17 18 19 20
@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
21

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