123456789101112131415161718192021222324 |
- //
- // PriceCell.h
- // JSJPCoach
- //
- // Created by apple on 2017/3/27.
- // Copyright © 2017年 Danson. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- @interface PriceCell : UITableViewCell
- @property (weak, nonatomic) IBOutlet UILabel *indexLabel;
- @property (weak, nonatomic) IBOutlet UILabel *carTypeLabel;
- @property (weak, nonatomic) IBOutlet UILabel *priceLabel;
- @property (weak, nonatomic) IBOutlet UILabel *timeLabel;
- @property (nonatomic, strong) NSDictionary *priceDic;
- @end
|