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

#import <UIKit/UIKit.h>
#import "HPGrowingTextView.h"
陈俊俊's avatar
陈俊俊 committed
11
#import "Transport.h"
陈俊俊's avatar
陈俊俊 committed
12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38
@protocol TopTransportViewDelegate <NSObject>

- (void)hiddenKeyBoard;
- (void)pushNextViewController:(id)vc;

@end
@interface TopTransportView : UIView
@property (nonatomic,strong)UILabel *rwarehouseLabel;       //收货仓库
@property (nonatomic,strong)UILabel *warehouseLabel;        //发货仓库
@property (nonatomic,strong)UITextField *carTextFiled;     //车辆
@property (nonatomic,strong)UILabel *typeLabel;            //运输类型
@property (nonatomic,strong)UITextField *phoneTextFiled;    //电话
@property (nonatomic,strong)HPGrowingTextView *remarkTextView;//备注


@property (nonatomic,weak)id <TopTransportViewDelegate>delegate;

@property (nonatomic,strong)NSString *warehouseUuid;
@property (nonatomic,strong)NSString *warehouseCode;
@property (nonatomic,strong)NSString *warehouseName;
@property (nonatomic,strong)NSString *rwarehouseUuid;
@property (nonatomic,strong)NSString *rwarehouseCode;
@property (nonatomic,strong)NSString *rwarehouseName;
@property (nonatomic,strong)NSString *carnumber;
@property (nonatomic,strong)NSString *type;
@property (nonatomic,strong)NSString *carphone;
@property (nonatomic,strong)NSString *note;
陈俊俊's avatar
陈俊俊 committed
39
@property (nonatomic,strong)Transport *transport;
陈俊俊's avatar
陈俊俊 committed
40 41

@end