| 123456789101112131415161718192021 |
- //
- // CommodityClassCell.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/2.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "CommodityClassModel.h"
- NS_ASSUME_NONNULL_BEGIN
- @interface CommodityClassCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *selectImg;
- @property (weak, nonatomic) IBOutlet UILabel *titleLb;
- @property(nonatomic, strong)CommodityClassModel *models;
- @end
- NS_ASSUME_NONNULL_END
|