-- Fix double-encoded (CP1252→UTF-8) menu_name for pans/bolts entries -- Root cause: these records were inserted through a connection that -- misinterpreted UTF-8 bytes as CP1252, causing mojibake. SET NAMES utf8mb4; USE `muyu_wms`; UPDATE `sys_menu` SET `menu_name` = '盘库存' WHERE `menu_id` = 'm_207' AND `path` = '/inventory/pans'; UPDATE `sys_menu` SET `menu_name` = '匹库存' WHERE `menu_id` = 'm_208' AND `path` = '/inventory/bolts';