// // TransportPurchaseCell.h // XFFruit // // Created by 陈俊俊 on 15/9/6. // Copyright (c) 2015年 Xummer. All rights reserved. // #import #import "PurchaseBill.h" #import "Transport.h" @interface TransportPurchaseCell : UITableViewCell @property (nonatomic,strong)UIView *bgView; @property (nonatomic,strong)UILabel *titleLabel; @property (nonatomic,strong)UILabel *lineLabel; @property (nonatomic,strong)UILabel *secondLabel; @property (nonatomic,strong)UILabel *threeLabel; @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; - (void)setPurchaseBill:(PurchaseBill *)bill selectArr:(NSMutableArray *)selectArr; - (void)setTransPort:(Transport *)bill selectArr:(NSMutableArray *)selectArr; @end