// // LoginModule.h // XinShouJiaDao // // Created by 张嵘 on 2021/7/12. // Copyright © 2021 JCZ. All rights reserved. // #import #pragma mark - Wechat Api /// 用户授权码模式登录 #define RQ_GET_Userinfo @"https://api.weixin.qq.com/sns/userinfo" #define RQ_GET_Refresh_token @"https://api.weixin.qq.com/sns/oauth2/refresh_token" #pragma mark - RequestPost /// 学员注册接口 #define RQ_POST_Register @"student/register" /// 学员注销接口 #define RQ_POST_StudentLogoutUser @"student/logoutUser" /// get学员 #define RQ_POST_StudentGetUser @"student/getUserInfo" /// 修改用户密码 #define RQ_POST_UpdatePassword @"student/savePwd" /// 获取短信验证码 #define RQ_POST_Code @"" /// 根据参数键名查询参数值 #define RQ_GET_Type @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/gzpt/userInfo/type" #define RQ_GET_ConfigKey @"https://jsjp-admin.zzxcx.net/jsjp-admin/open-api/gzpt/userInfo/configKey" /// 新增答题记录 #define RQ_POST_AddScoreInfo @"/prod-api/student/score/info" /// 查询答题记录列表 #define RQ_GET_ScoreInfoList @"/prod-api/student/score/info/list" /// 获取最大成绩,平均成绩,预测成绩 #define RQ_GET_ScoreInfoAll @"/prod-api/student/score/info/getScoreInfoAll" /// 新增收藏 #define RQ_POST_AddCollection @"/prod-api/student/question/collection" /// 批量新增收藏 #define RQ_POST_AddCollections @"/prod-api/student/question/collection/collections" /// 删除收藏 #define RQ_DELETE_Collection @"/prod-api/student/question/collection" /// 取消收藏 #define RQ_DELETE_Cancle_Collection @"/prod-api/student/question/collection/cancel" /// 查询收藏列表 #define RQ_GET_CollectionList @"/prod-api/student/question/collection/list" /// 新增错题 #define RQ_POST_AddWrong @"/prod-api/student/question/wrong" /// 批量新增错题 #define RQ_POST_AddWrongs @"/prod-api/student/question/wrong/wrongs" /// 删除错题 #define RQ_DELETE_Wrong @"/prod-api/student/question/wrong" /// 查询错题列表 #define RQ_GET_WrongList @"/prod-api/student/question/wrong/list" /// 查询错题列表 #define RQ_GET_WrongList @"/prod-api/student/question/wrong/list" /// 用户激活码激活 #define RQ_PUT_VIPCode @"/prod-api/student/vip/code" /// 查询激活码列表 #define RQ_GET_VIPCodeList @"/prod-api/vip/code/list" /// 查询教学视频分类树形列表 #define RQ_GET_TreeList @"https://zzjs.zzxcx.net/zzjs-admin/open-api/teachingVideo/info/treeList" /// 根据分类ID查询教学视频 #define RQ_GET_TeachingVideoByTypeId @"https://zzjs.zzxcx.net/zzjs-admin/open-api/teachingVideo/info/getTeachingVideoByTypeId" /// 查询学车短视频列表 #define RQ_GET_DspList @"https://zzjs.zzxcx.net/zzjs-admin/open-api/teachingDsp/dsp/list" #pragma mark - Model #import "RQUserModel.h" #import "RQHTTPService+RQLogin.h" #import "RQHTTPService+RQRegister.h" #import "RQHTTPService+RQGetCode.h" #import "RQHTTPService+RQUpdatePassword.h" #import "RQHTTPService+RQVerificationSmsCode.h" #pragma mark - ViewController #import "RQHomePageViewController.h" #import "RQHomeSubPageViewController.h" #import "RQLoginViewController.h" #import "NYLoginBindViewController.h" #pragma mark - ViewModel /// Controller_ViewModel #import "RQLoginViewModel.h" #import "NYLoginBindViewModel.h" #import "RQLoginBaseViewModel.h" #import "RQVerificationSmsCodeViewModel.h" #import "RQUpdatePasswordViewModel.h" #import "RQRegisterViewModel.h" #import "NYJsCodeModel.h" /// View_ViewModel #pragma mark - View #import "RQAgreementView.h"