| 12345678910111213141516171819 |
- //
- // CollectionViewCell.h
- // Haishenghai-master
- //
- // Created by GG on 2019/1/3.
- // Copyright © 2019年 Haishenghai intelligence network technology. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "deveceModel.h"
- @interface CollectionViewCell : UICollectionViewCell
- @property (nonatomic,strong) deveceModel *model;
- @property (strong, nonatomic) UIImageView *topImage;
- @property (strong, nonatomic) UILabel *botlabel;
- @end
|