This commit is contained in:
hanrenchun 2025-06-09 19:42:12 +08:00
parent b0081791c0
commit 99bd9edd43
1 changed files with 1 additions and 1 deletions

View File

@ -223,7 +223,7 @@ public class ApprovalProcessController extends BaseController {
for (String s : split) {
s = s.trim(); // 移除首尾空格
if (!s.isEmpty()) {
SysUser user = sysUserService.selectUserById(Long.parseLong(togUserIds));
SysUser user = sysUserService.selectUserById(Long.parseLong(s));
userList.add(user);
}
}