12345678910111213141516171819202122232425262728 |
- //
- // KDPRecommendGoodCell.h
- // KuDianProject
- //
- // Created by 学丽 on 2019/7/4.
- // Copyright © 2019 KDP. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "KDPGoodsModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface KDPRecommendGoodCell : UICollectionViewCell
- @property(nonatomic,strong)UIImageView *recomImgV;
- @property(nonatomic,strong)UILabel *recomTitleL;
- @property(nonatomic,strong)UILabel *recomShopL;
- @property(nonatomic,strong)UIImageView *recomShopiconImg;
- @property(nonatomic,strong)UILabel *recomPriceL;
- @property(nonatomic,strong)UILabel *recomOriginL;
- @property(nonatomic,strong)UILabel *recomVolumeL;
- @property(nonatomic,strong)UIImageView *couponImgV;
- @property(nonatomic,strong)UILabel *couponPriceL;
- @property(nonatomic,strong)UILabel *recomprofitL;
- @property(nonatomic,strong)KDPGoodsModel *model;
- @end
- NS_ASSUME_NONNULL_END
|