// // OrderListTableViewCell.h // Car // // Created by Javen on 2016/12/26. // Copyright © 2016年 上海勾芒信息科技. All rights reserved. // #import <UIKit/UIKit.h> @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; @property (weak, nonatomic) IBOutlet UIButton *btnIsChecked; /** cell刷新 @param array 数据 @param indexPath 位置 @param isShow 是否显示checkbox @param isAll 是否全选 */ - (void)configCellArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath isShow:(BOOL)isShow isAll:(BOOL)isAll; @end