123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- //
- // RQProfileModule.h
- // jiaPei
- //
- // Created by 张嵘 on 2022/4/25.
- // Copyright © 2022 JCZ. All rights reserved.
- //
- #import <Foundation/Foundation.h>
- #pragma mark - ViewController
- #import "RQProfileViewController.h"
- #import "RQSettingViewController.h"
- #import "RQChooseCarTypeViewController.h"
- #import "RQAboutViewController.h"
- #pragma mark - ViewModel
- #import "RQProfileViewModel.h"
- #import "RQSettingViewModel.h"
- #import "RQChooseCarTypeViewModel.h"
- #import "RQSynchronizationViewModel.h"
- #import "RQAboutViewModel.h"
- #pragma mark - View
- #import "RQProfileUserAndVipHeaderView.h"
- #import "RQProfileUserAndVipCell.h"
- #import "RQProfilePracticeCell.h"
- #import "RQProfileLogoutCell.h"
- #import "RQChooseCarTypeHeaderView.h"
- #import "RQBottomBtnView.h"
- #import "RQChooseCarTypeCell.h"
- #import "RQAboutUsHeaderView.h"
- #import "NYLIProfileSubjectOneVipCell.h"
- #import "NYLIProfileSubjectFourVipCell.h"
- #import "NYLIProfileVipCell.h"
- #pragma mark - Model
- #import "RQHTTPService+RQGetMenuInfo.h"
- #define RQ_Profile_Module [RQProfileModule sharedInstance]
- NS_ASSUME_NONNULL_BEGIN
- @interface RQProfileModule : NSObject
- @property (nonatomic, readwrite, assign) RQHomePageSubjectType profileSubject;
- /// 单例
- + (instancetype) sharedInstance;
- - (void)getVipInfo;
- @end
- NS_ASSUME_NONNULL_END
|