NewCostViewController.h 732 Bytes
Newer Older
陈俊俊's avatar
陈俊俊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
//
//  NewCostViewController.h
//  XFFruit
//
//  Created by 陈俊俊 on 15/9/7.
//  Copyright (c) 2015年 Xummer. All rights reserved.
//

#import "ICRBaseViewController.h"
#import "FeeAcountDetail.h"
typedef void(^GetTransportCost)(FeeAcountDetail *accountDetail,NSIndexPath *indexPath);
typedef void(^DeleteTransportCost)(FeeAcountDetail *accountDetail,NSIndexPath *indexPath);
@interface NewCostViewController : ICRBaseViewController
@property (nonatomic,copy)GetTransportCost getTransportCost;
@property (nonatomic,copy)DeleteTransportCost deleteTransportCost;
@property (nonatomic,strong)NSString *navTitle;
@property (nonatomic,strong)FeeAcountDetail *accountDetail;
@property (nonatomic,strong)NSIndexPath *indexPath;
@end