123456789101112131415161718192021222324252627282930 |
- //
- // ZBOrderDataCell.h
- // ZBProject
- //
- // Created by 学丽 on 2019/4/9.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBOrderDataCell : UICollectionViewCell
- @property(nonatomic,strong)UIImageView *goodImgV;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *oldPriceL;
- @property(nonatomic,strong)UILabel *priceLabel;
- @property(nonatomic,strong)UIImageView *shopImg;
- @property(nonatomic,strong)UILabel *shopLabel;
- @property(nonatomic,strong)UIImageView *quanImgv;
- @property(nonatomic,strong)UILabel *quanLabel;//券金额
- @property(nonatomic,strong)UILabel *salesCountL;//销量
- @property(nonatomic,strong)UILabel *makeLabel;//赚多钱
- @property(nonatomic,strong)ZBGoodModel *model;
- @property(nonatomic,strong)UILabel *exclusiveLabel;//专属
- @end
- NS_ASSUME_NONNULL_END
|