DepartmentSearchVC.h 459 B

1234567891011121314151617
  1. //
  2. // BuMenSearchTC.h
  3. // IBOSS
  4. //
  5. // Created by iHope on 14-7-11.
  6. // Copyright (c) 2014年 elongtian. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. #import "SubmitOrderVC.h"
  10. #import "OrderDelegate.h"
  11. @interface DepartmentSearchVC : BaseViewController
  12. @property(strong) NSMutableArray *searchArr;//搜索数组
  13. @property(strong) NSMutableArray *filterArr;//过滤数组
  14. @property(weak) id<OrderDelegate> departmentDelegate;
  15. @property BOOL subview;
  16. @end