Compare commits

..

No commits in common. "6cdd8462f68c4c35ddf4853cac56545e4a50c707" and "34b457f2e72fc45cebb11b436ed2a74dbdb7a456" have entirely different histories.

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(s)); SysUser user = sysUserService.selectUserById(Long.parseLong(togUserIds));
userList.add(user); userList.add(user);
} }
} }