CustomerCodeSearchVC.h 796 B

123456789101112131415161718192021222324252627
  1. //
  2. // KeHuBianMaSearchTC.h
  3. // IBOSSIPAD
  4. //
  5. // Created by iHope on 14-8-14.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SubmitOrderVC.h"
  10. #import "OrderDelegate.h"
  11. #import "CustomerCodeSearchModel.h"
  12. @interface CustomerCodeSearchVC : BaseViewController<OrderDelegate>{
  13. }
  14. @property(strong) NSMutableArray *searchArr;//搜索数组
  15. @property(strong) NSMutableArray *filterArr;//过滤数组
  16. @property(weak)id<OrderDelegate> orderDelegate;//委托
  17. @property(strong)UIButton *btnCustomerType;//客户性质按钮
  18. @property(copy) NSString *channelStr;//渠道
  19. @property(strong)UIButton* btnChannel;//渠道按钮
  20. @property(copy) NSString *customerTypeStr;//客户性质
  21. @property BOOL subview;
  22. @property(nonatomic,strong)NSString *flag;
  23. @end