PriceCell.h 493 B

123456789101112131415161718192021222324
  1. //
  2. // PriceCell.h
  3. // JSJPCoach
  4. //
  5. // Created by apple on 2017/3/27.
  6. // Copyright © 2017年 Danson. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. @interface PriceCell : UITableViewCell
  10. @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
  11. @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
  12. @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
  13. @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
  14. @property (nonatomic, strong) NSDictionary *priceDic;
  15. @end