BillListTableViewCell.h 494 Bytes
//
//  BillListTableViewCell.h
//  Car
//
//  Created by Javen on 2016/12/27.
//  Copyright © 2016年 上海勾芒信息科技. All rights reserved.
//

#import <UIKit/UIKit.h>

@interface BillListTableViewCell : UITableViewCell
@property (weak, nonatomic) IBOutlet UILabel *labelTitle;
@property (weak, nonatomic) IBOutlet UILabel *labelDate;
@property (weak, nonatomic) IBOutlet UILabel *labelReduct;

- (void)configWithArray:(NSMutableArray *)array indexPath:(NSIndexPath *)indexPath;
@end