单点登录调用权限接口获取菜单authority/api/V1/appModules的接口参数userToken不需要传值,传“ ”就可以

develop
Hoshi 2024-09-21 14:01:22 +08:00
parent e03419a4a3
commit 604eb59d38
1 changed files with 3 additions and 0 deletions

View File

@ -27,6 +27,9 @@ public class QxUtils {
}
public String queryAppModules(String userToken, String userId){
if (userToken == null) {
userToken = "";
}
QxReqVo qxReqVo = new QxReqVo(userToken, userId,appId,appName,"","");
return call(queryAppModulesUrl,qxReqVo);
}