// // OrderListTableViewCell.h // Car // // Created by Javen on 2016/12/26. // Copyright © 2016年 上海勾芒信息科技. All rights reserved. // #import @interface OrderListTableViewCell : UITableViewCell @property (weak, nonatomic) IBOutlet UILabel *labelTime; @property (weak, nonatomic) IBOutlet UILabel *labelStation; @property (weak, nonatomic) IBOutlet UILabel *labelOil; @property (weak, nonatomic) IBOutlet UILabel *labelBillNumber; @property (weak, nonatomic) IBOutlet UILabel *labelPrice; - (void)configCellArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath; @end