SalesOrderSeriesVC.h 697 B

12345678910111213141516171819202122232425262728293031323334353637
  1. //
  2. // SalesOrderSeriesVC.h
  3. // IBOSS
  4. //
  5. // Created by 关宏厚 on 2020/9/8.
  6. // Copyright © 2020 elongtian. All rights reserved.
  7. //
  8. #import "BaseViewController.h"
  9. #import "BaseIDAndNameProtocol.h"
  10. @interface SalesOrderSeriesVC : BaseViewController
  11. /**
  12. 查询数据
  13. */
  14. @property (strong,nonatomic) NSMutableArray *arrSearch;
  15. /**
  16. 从查询数据过滤数据
  17. */
  18. @property (strong,nonatomic) NSMutableArray *arrFilter;
  19. /**
  20. 是否是调用presentViewController标示
  21. */
  22. @property (assign,nonatomic) BOOL isPresentViewFlag;
  23. /**
  24. 代理
  25. */
  26. @property (nonatomic,weak) id<BaseIDAndNameProtocol> bDelegate;
  27. /**
  28. 类型
  29. */
  30. @property (assign,nonatomic) baseIdAndName showDialogViewTag;
  31. @end