// // TopTransportView.h // XFFruit // // Created by 陈俊俊 on 15/9/6. // Copyright (c) 2015年 Xummer. All rights reserved. // #import <UIKit/UIKit.h> #import "HPGrowingTextView.h" #import "Transport.h" #import "FinishTimeView.h" @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)UILabel *arriveDateLabel; //预计收货时间 @property (nonatomic,strong)HPGrowingTextView *remarkTextView;//备注 @property (nonatomic,strong)FinishTimeView *startTimeView; @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 *arriveDate; @property (nonatomic,strong)NSString *note; @property (nonatomic,strong)Transport *transport; @end