| 12345678910111213141516171819 |
- //
- // PlatformInterventionVC.h
- // yunbaolive
- //
- // Created by ybRRR on 2020/3/23.
- // Copyright © 2020 cat. All rights reserved.
- //
- #import <UIKit/UIKit.h>
- typedef void(^reloadDataEvent)();
- @interface PlatformInterventionVC : YBBaseViewController
- @property (nonatomic, strong)NSString *orderIDStr;
- @property (nonatomic, copy)reloadDataEvent reloadEvent;
- @end
|