1234567891011121314151617181920212223 |
- //
- // FKHotSaleCell.h
- // FirstLink
- //
- // Created by ascii on 2017/6/10.
- // Copyright © 2017年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface FKHotSaleCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *proImgView;
- @property (nonatomic, strong) UILabel *proTitleLabel;
- @property (nonatomic, strong) UILabel *priceLabel;
- @property (nonatomic, strong) UILabel *referPriceLabel;
- @property (nonatomic, strong) UIImageView *supplierImageView;
- @property (nonatomic, strong) UIImageView *orderImgView;
- @property (nonatomic, strong) UILabel *orderLabel;
- @end
|