xinli/Archive/将知识库管理移到心理测评管理下.sql
2026-01-30 16:23:31 +08:00

23 lines
678 B
SQL
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

-- 将知识库管理作为心理测评管理的子菜单
-- 这样它就和"测评管理"、"报告管理"等同级
-- 1. 修改知识库管理的parent_id为2009心理测评管理
UPDATE sys_menu
SET parent_id = 2009,
order_num = 15 -- 放在最后
WHERE menu_id = 2209;
-- 2. 验证修改
SELECT menu_id, menu_name, parent_id, order_num, path, component
FROM sys_menu
WHERE menu_id = 2209;
-- 3. 查看心理测评管理下的所有子菜单
SELECT menu_id, menu_name, parent_id, path, order_num
FROM sys_menu
WHERE parent_id = 2009
ORDER BY order_num;
-- 完成!退出登录重新登录
SELECT '修改完成!请退出登录后重新登录' AS message;