PlatformInterventionVC.h 369 B

12345678910111213141516171819
  1. //
  2. // PlatformInterventionVC.h
  3. // yunbaolive
  4. //
  5. // Created by ybRRR on 2020/3/23.
  6. // Copyright © 2020 cat. All rights reserved.
  7. //
  8. #import <UIKit/UIKit.h>
  9. typedef void(^reloadDataEvent)();
  10. @interface PlatformInterventionVC : YBBaseViewController
  11. @property (nonatomic, strong)NSString *orderIDStr;
  12. @property (nonatomic, copy)reloadDataEvent reloadEvent;
  13. @end