| 1234567891011121314151617181920212223 |
- //
- // commodityRecordsCell.h
- // YBVideo
- //
- // Created by IOS1 on 2019/7/5.
- // Copyright © 2019 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- NS_ASSUME_NONNULL_BEGIN
- @interface commodityRecordsCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UIImageView *thumbImgV;
- @property (weak, nonatomic) IBOutlet UILabel *nameL;
- @property (weak, nonatomic) IBOutlet UILabel *contentL;
- @property (weak, nonatomic) IBOutlet UILabel *priceL;
- @property (weak, nonatomic) IBOutlet UILabel *priceL2;
- @property (weak, nonatomic) IBOutlet UILabel *numL;
- @end
- NS_ASSUME_NONNULL_END
|