//
//  QuestionDescribeCell.h
//  redstar
//
//  Created by admin on 15/11/3.
//  Copyright © 2015年 ZWF. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "QuestionDetailModel.h"

@protocol QuestionDescribeDelegate <NSObject>

- (void)showPicture:(UITapGestureRecognizer *)sender;

@end

@interface QuestionDescribeCell : UITableViewCell
@property (nonatomic, strong) UILabel *titleLabel; // 标题
@property (nonatomic, strong) UILabel *describeLabel; // 描述
@property (nonatomic, strong) UILabel *pictureLabel; // 照片

@property (nonatomic, strong) UIView *pictureView; // 照片

@property (nonatomic, strong) UILabel *feedbackLabel; // 反馈
@property (nonatomic, strong) UIView *feedbackBackView; // 反馈背景
@property (nonatomic, strong) UILabel *answerLabel; // 答案
@property (nonatomic, strong) UILabel *peopleLabel; // 解决人
@property (nonatomic, strong) UILabel *dateLabel; // 时间

@property (nonatomic, strong) QuestionDetailModel *questionDetail;

@property (nonatomic, assign) id <QuestionDescribeDelegate> delegate;

@end