1234567891011121314151617181920212223242526 |
- //
- // FKPriceWarnListCell.h
- // FirstLink
- //
- // Created by jack on 16/5/27.
- // Copyright © 2016年 FirstLink. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "FKRemindProductItem.h"
- @interface FKPriceWarnListCell : UITableViewCell
- @property (nonatomic, strong) UIImageView *proImgView;
- @property (nonatomic, strong) UILabel *titleLabel;
- @property (nonatomic, strong) UILabel *currentPriceLabel;
- @property (nonatomic, strong) UILabel *originPriceLabel;
- @property (nonatomic, strong) UIButton *bookPirceBtn;
- @property (nonatomic, strong) UILabel *bookPirceLabel;
- @property (nonatomic, strong) UIView *cutLine;
- - (void)configWithRemindItem:(FKRemindProductItem *)remindItem;
- @end
|