Skip to content

Commit

Permalink
fix-RuntimeController-用户查询menu报错
Browse files Browse the repository at this point in the history
  • Loading branch information
aruis committed Oct 13, 2024
1 parent 6a05570 commit a885ccb
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ public List<TreeNode> menu(@QueryParam("terminalType") String terminalType) {
app_menu.dict_menu_opentype as opentype
from platform.app_menu
left join platform.app_module on app_menu.id_at_app_module = app_module.id
where app_menu.b_enable = true && app_menu.id_at_app_menu_schema = ?
where app_menu.b_enable = true and app_menu.id_at_app_menu_schema = ?
""", schemaID);

List<TreeNode> treeNodes = TreeBuilder.build("id", "pid", list, null, false, "v_name", null);
Expand Down

0 comments on commit a885ccb

Please sign in to comment.