12345678910111213141516171819202122232425262728293031 |
- //
- // ZBGoodDetailView.h
- // ZBProject
- //
- // Created by 学丽 on 2019/3/27.
- // Copyright © 2019 ZB. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import <SDCycleScrollView.h>
- #import "ZBGoodModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface ZBGoodDetailViewCell : UICollectionViewCell
- @property(nonatomic,strong)SDCycleScrollView *imgCycleView;
- @property(nonatomic,strong)UILabel *titleLabel;
- @property(nonatomic,strong)UILabel *priceLabel;
- @property(nonatomic,strong)UILabel *saleLabel;
- @property(nonatomic,strong)UILabel *quanLabel;
- @property(nonatomic,strong)UILabel *oldPricel;
- @property(nonatomic,strong)UIImageView *quanImgv;
- @property(nonatomic,strong)UIImageView *tipeImgV;
- @property(nonatomic,strong)ZBGoodModel *model;
- @property(nonatomic,strong)NSMutableArray *bannerArry;
- @property(nonatomic,strong)UIView *pointbackView;
- @property(nonatomic,strong)UILabel *pointLabel;
- @end
- NS_ASSUME_NONNULL_END
|