// // QuestionDetailCell.h // redstar // // Created by admin on 15/11/2. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "ZanButton.h" #import "QuestionDetailModel.h" @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; // 提报时间 @property (nonatomic, strong) QuestionDetailModel *questionDetail; @end