Bez popisu

FKPriceWarnListCell.h 733B

1234567891011121314151617181920212223242526
  1. //
  2. // FKPriceWarnListCell.h
  3. // FirstLink
  4. //
  5. // Created by jack on 16/5/27.
  6. // Copyright © 2016年 FirstLink. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "FKRemindProductItem.h"
  10. @interface FKPriceWarnListCell : UITableViewCell
  11. @property (nonatomic, strong) UIImageView *proImgView;
  12. @property (nonatomic, strong) UILabel *titleLabel;
  13. @property (nonatomic, strong) UILabel *currentPriceLabel;
  14. @property (nonatomic, strong) UILabel *originPriceLabel;
  15. @property (nonatomic, strong) UIButton *bookPirceBtn;
  16. @property (nonatomic, strong) UILabel *bookPirceLabel;
  17. @property (nonatomic, strong) UIView *cutLine;
  18. - (void)configWithRemindItem:(FKRemindProductItem *)remindItem;
  19. @end