JiTaoRecommendCollectionViewCell.h 727 B

123456789101112131415161718192021222324
  1. //
  2. // JiTaoRecommendCollectionViewCell.h
  3. // jitao
  4. //
  5. // Created by 罗云飞 on 2018/2/6.
  6. // Copyright © 2018年 罗云飞. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeRecommendedModel.h"
  10. @interface JiTaoRecommendCollectionViewCell : UICollectionViewCell
  11. @property(copy,nonatomic)UIImageView *image;//
  12. @property(copy,nonatomic)UILabel *title;//
  13. @property(copy,nonatomic)UILabel *content;//
  14. @property(copy,nonatomic)UILabel *concernsnumber;//
  15. @property(copy,nonatomic)UIImageView *followimage;
  16. @property(copy,nonatomic)UILabel *line4;
  17. @property(copy,nonatomic)UIButton *seemoreBT;
  18. @property(copy,nonatomic)UIImageView *boutiqueimage;//精品图片
  19. - (void)assignment:(HomeRecommendedModel *)model;
  20. @end