| 1234567891011121314151617181920212223242526272829303132333435 |
- //
- // EvaluationListCell.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/27.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CWStarRateView.h"
- #import "EvaluationListModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface EvaluationListCell : UITableViewCell<CWStarRateViewDelegate>
- {
- UILabel *contentLb;
-
- UILabel *append_contentLb;
- UILabel *append_timeLb;
- UILabel *appenline;
-
- UILabel *time_format; //时间
- UILabel *spec_format; //规格
- UILabel *dateLb ;
- UILabel *standLb;
- }
- @property (nonatomic, strong)UIImageView *headImg;
- @property (nonatomic, strong)UILabel *nameLb;
- @property (nonatomic, strong)CWStarRateView *starView;
- @property (nonatomic, strong)EvaluationListModel *model;
- @property (nonatomic, assign)CGFloat imgWidth;
- @end
- NS_ASSUME_NONNULL_END
|