//
// PictureCommentTableCell.h
// redstar
//
// Created by admin on 15/12/11.
// Copyright © 2015年 ZWF. All rights reserved.
//
#import <UIKit/UIKit.h>
#import "CommentModel.h"
@interface PictureCommentTableCell : 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 *comment; // 时间
@end
-
admin authored4adb0e52