Compare commits

..

2 Commits

Author SHA1 Message Date
hanrenchun 6cdd8462f6 Merge remote-tracking branch 'origin/master' 2025-06-09 19:42:21 +08:00
hanrenchun 99bd9edd43 修改 2025-06-09 19:42:12 +08:00
1 changed files with 1 additions and 1 deletions

View File

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