CollectionViewCell.h 440 B

12345678910111213141516171819
  1. //
  2. // CollectionViewCell.h
  3. // Haishenghai-master
  4. //
  5. // Created by GG on 2019/1/3.
  6. // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "deveceModel.h"
  10. @interface CollectionViewCell : UICollectionViewCell
  11. @property (nonatomic,strong) deveceModel *model;
  12. @property (strong, nonatomic) UIImageView *topImage;
  13. @property (strong, nonatomic) UILabel *botlabel;
  14. @end