Commit 6c904cc9 by 陶光胜

Merge branch 'developer' into 'master'

根据应用code查询应用ID

See merge request !10
parents 04470711 63afb3ce
......@@ -97,6 +97,19 @@ public class MenuController {
return EnterpriseRestResponse.failure(userMenu);
}
/**
* 根据应用code查询应用ID
* @Title: getAppIdByMenuCode

* @Description:

* @author guojuxing
* @param menuCode

* @return com.gic.commons.webapi.reponse.RestResponse


*/
@RequestMapping("get-app-by-code")
public RestResponse getAppIdByMenuCode(String menuCode) {
return RestResponse.success(getAppId(null, menuCode));
}
@RequestMapping("login-collaborator-menu-of-app")
public RestResponse getCollaboratorMenu(String appId, String menuCode) {
LOGGER.info("查询登录用户的协作应用的菜单参数:{}-{}", appId, menuCode);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment