12345678910111213141516171819202122232425262728 |
- //
- // ZBHotSaleListCell.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/19.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBHotSaleListCell : UICollectionViewCell
- @property(nonatomic,strong)UIImageView *goodImgV;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *priceLabel;
- @property(nonatomic,strong)UIImageView *shopImg;
- @property(nonatomic,strong)UILabel *shopLabel;
- @property(nonatomic,strong)UILabel *salesCountL;//销量
- @property(nonatomic,strong)UIImageView *saleImgV;
- @property(nonatomic,strong)ZBGoodModel *model;
- @end
- NS_ASSUME_NONNULL_END
|