| 123456789101112131415161718192021222324252627 |
- //
- // KeHuBianMaSearchTC.h
- // IBOSSIPAD
- //
- // Created by iHope on 14-8-14.
- // Copyright (c) 2014年 elongtian. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- #import "SubmitOrderVC.h"
- #import "OrderDelegate.h"
- #import "CustomerCodeSearchModel.h"
- @interface CustomerCodeSearchVC : BaseViewController<OrderDelegate>{
-
- }
- @property(strong) NSMutableArray *searchArr;//搜索数组
- @property(strong) NSMutableArray *filterArr;//过滤数组
- @property(weak)id<OrderDelegate> orderDelegate;//委托
- @property(strong)UIButton *btnCustomerType;//客户性质按钮
- @property(copy) NSString *channelStr;//渠道
- @property(strong)UIButton* btnChannel;//渠道按钮
- @property(copy) NSString *customerTypeStr;//客户性质
- @property BOOL subview;
- @property(nonatomic,strong)NSString *flag;
- @end
|