1234567891011121314151617181920 |
- //
- // YZMAScrollChildCollectionViewCell.h
- // YouHuiProject
- //
- // Created by xiaoxi on 2018/1/17.
- // Copyright © 2018年 kuxuan. All rights reserved.
- //
- #import "YZMACollectionViewCell.h"
- #import "YZMAChildGoodModel.h"
- @interface YZMAScrollChildCollectionViewCell : YZMACollectionViewCell
- @property (nonatomic, strong) YZMAChildGoodModel *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
|