1234567891011121314151617181920 |
- //
- // LZMScrollChildCollectionViewCell.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "LZMCollectionViewCell.h"
- #import "LZMChildGoodModel.h"
- @interface LZMScrollChildCollectionViewCell : LZMCollectionViewCell
- @property (nonatomic, strong) LZMChildGoodModel *model;
- @property (nonatomic, strong) CALayer *pictureLayer;
- @property (nonatomic, strong) UILabel *topLabel;
- @property (nonatomic, strong) UILabel *middleLabel;
- @property (nonatomic, strong) UILabel *bottomLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- @end
|