// // TransportPurchaseCell.h // XFFruit // // Created by 陈俊俊 on 15/9/6. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> #import "ProductBillCell.h" #import "PurchaseBill.h" @interface TransportPurchaseCell : UITableViewCell<UITableViewDataSource,UITableViewDelegate> @property (nonatomic,strong)UILabel *titleLabel; @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UILabel *secondLabel; @property (nonatomic,strong)UITableView *secondTable; @property (nonatomic,strong)NSMutableArray *secondArr; @property (nonatomic,strong)PurchaseBill *bill; @property (nonatomic,strong)NSMutableArray *indexArr; @property (nonatomic,strong)NSMutableArray *selectArr; @end