BaseShopTableViewCell.h 574 B

1234567891011121314151617181920
  1. //
  2. // BaseShopTableViewCell.h
  3. // BuguLive
  4. //
  5. // Created by 布谷 on 2017/9/9.
  6. // Copyright © 2017年 xfg. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface BaseShopTableViewCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UIImageView *goodsImageView;
  11. @property (weak, nonatomic) IBOutlet UILabel *titleLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *desLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
  14. @property (weak, nonatomic) IBOutlet UIButton *baseButton;
  15. @property (weak, nonatomic) IBOutlet UILabel *lineLabel;
  16. @end