RQRetrainModule.h 681 B

1234567891011121314151617181920212223242526272829303132333435
  1. //
  2. // RQRetrainModule.h
  3. // jiaPei
  4. //
  5. // Created by 张嵘 on 2022/4/13.
  6. // Copyright © 2022 JCZ. All rights reserved.
  7. //
  8. #import <Foundation/Foundation.h>
  9. #define RQ_Retrain_Module [RQRetrainModule sharedInstance]
  10. #pragma mark - Model
  11. #pragma mark - ViewModel
  12. #import "RQRetrainViewModel.h"
  13. #import "RQRetrainOrderViewModel.h"
  14. #pragma mark - View
  15. #import "RQHeadImageView.h"
  16. #import "RQRetrainChooseCell.h"
  17. #pragma mark - Controller
  18. #import "RQRetrainViewController.h"
  19. #import "RQRetrainOrderViewController.h"
  20. NS_ASSUME_NONNULL_BEGIN
  21. @interface RQRetrainModule : NSObject
  22. /// 单例
  23. + (instancetype)sharedInstance;
  24. - (void)gotoOrderRetain;
  25. @end
  26. NS_ASSUME_NONNULL_END