// // QuestionCommentCell.h // redstar // // Created by admin on 15/11/3. // Copyright © 2015年 ZWF. All rights reserved. // #import <UIKit/UIKit.h> #import "CommentModel.h" @interface QuestionCommentCell : UITableViewCell @property (nonatomic, strong) UILabel *suggestLabel; // 评论 @property (nonatomic, strong) UILabel *peopleLabel; // 评论人 @property (nonatomic, strong) UILabel *positionLabel; // 职位 @property (nonatomic, strong) UILabel *dateLabel; // 时间 @property (nonatomic, strong) CommentModel *commentModel; @end