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