// // FKPriceWarnListCell.h // FirstLink // // Created by jack on 16/5/27. // Copyright © 2016年 FirstLink. All rights reserved. // #import #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