TransportPurchaseCell.h 984 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10
//
//  TransportPurchaseCell.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/6.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import <UIKit/UIKit.h>
#import "PurchaseBill.h"
陈俊俊's avatar
陈俊俊 committed
11
#import "Transport.h"
陈俊俊's avatar
陈俊俊 committed
12
@interface TransportPurchaseCell : UITableViewCell<UITableViewDataSource,UITableViewDelegate>
陈俊俊's avatar
陈俊俊 committed
13
@property (nonatomic,strong)UIView *bgView;
陈俊俊's avatar
陈俊俊 committed
14 15 16
@property (nonatomic,strong)UILabel *titleLabel;
@property (nonatomic,strong)UILabel *lineLabel;
@property (nonatomic,strong)UILabel *secondLabel;
陈俊俊's avatar
陈俊俊 committed
17
@property (nonatomic,strong)UILabel *threeLabel;
陈俊俊's avatar
陈俊俊 committed
18 19 20 21 22 23 24 25

@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;

26
- (void)setPurchaseBill:(PurchaseBill *)bill selectArr:(NSMutableArray *)selectArr;
陈俊俊's avatar
陈俊俊 committed
27
- (void)setTransPort:(Transport *)bill selectArr:(NSMutableArray *)selectArr;
陈俊俊's avatar
陈俊俊 committed
28

陈俊俊's avatar
陈俊俊 committed
29

陈俊俊's avatar
陈俊俊 committed
30
@end