Number(key) 在 JavaScript 中无法精确表示 19 位雪花 ID, 改为直接传字符串,由 Jackson 反序列化为 Long。 Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
@@ -275,7 +275,7 @@ const handleSaveRolePermission = () => {
////console.log(map)
map.forEach((value: Array<string>, key: any) => {
updateRoles.push({
- id: Number(key),
+ id: key,
permissions: value.join("|")
});
})