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

#import <UIKit/UIKit.h>
10
#import "CommentModel.h"
11 12 13

@interface QuestionCommentCell : UITableViewCell

admin's avatar
admin committed
14 15 16
@property (nonatomic, strong) UILabel *suggestLabel; // 评论
@property (nonatomic, strong) UILabel *peopleLabel; // 评论人
@property (nonatomic, strong) UILabel *positionLabel; // 职位
admin's avatar
admin committed
17 18
@property (nonatomic, strong) UILabel *dateLabel; // 时间

19
@property (nonatomic, strong) CommentModel *commentModel;
admin's avatar
admin committed
20

21
@end