HomeGoodBookCollectCell.h 520 B

12345678910111213141516171819202122
  1. //
  2. // HomeGoodBookCollectCell.h
  3. // smartRhino
  4. //
  5. // Created by niuzhen on 2020/5/20.
  6. // Copyright © 2020 tederen. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "HomeSubItemModel.h"
  10. NS_ASSUME_NONNULL_BEGIN
  11. @interface HomeGoodBookCollectCell : UICollectionViewCell
  12. @property (weak, nonatomic) IBOutlet UIImageView *imagV;
  13. @property (weak, nonatomic) IBOutlet UILabel *titleL;
  14. @property (weak, nonatomic) IBOutlet UILabel *subTitleL;
  15. - (void)setData:(HomeSubItemModel *)model;
  16. @end
  17. NS_ASSUME_NONNULL_END