| 123456789101112131415161718192021222324 |
- //
- // JiTaoRecommendCollectionViewCell.h
- // jitao
- //
- // Created by 罗云飞 on 2018/2/6.
- // Copyright © 2018年 罗云飞. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "HomeRecommendedModel.h"
- @interface JiTaoRecommendCollectionViewCell : UICollectionViewCell
- @property(copy,nonatomic)UIImageView *image;//
- @property(copy,nonatomic)UILabel *title;//
- @property(copy,nonatomic)UILabel *content;//
- @property(copy,nonatomic)UILabel *concernsnumber;//
- @property(copy,nonatomic)UIImageView *followimage;
- @property(copy,nonatomic)UILabel *line4;
- @property(copy,nonatomic)UIButton *seemoreBT;
- @property(copy,nonatomic)UIImageView *boutiqueimage;//精品图片
- - (void)assignment:(HomeRecommendedModel *)model;
- @end
|