1234567891011121314151617181920 |
- //
- // OrderCommentCell.h
- // jiaPei
- //
- // Created by apple on 16/6/30.
- // Copyright © 2016年 JCZ. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CDPStarEvaluation.h"
- @interface OrderCommentCell : UITableViewCell
- {
- UILabel *nameLabel, *dateLabel, *contentLabel, *tag1Label, *tag2Label, *tag3Label ;
- CDPStarEvaluation *starImageView;//星形评价
- }
- @property (nonatomic, strong) NSDictionary *dataDic;
- @end
|