|
|
@@ -863,6 +863,7 @@ public class AuditProecessServiceImpl extends ServiceImpl<AuditProecessMapper, A
|
|
|
AuditProecess process = baseMapper.selectById(auditProecess.getId());
|
|
|
List<String> userIdList = Arrays.stream(process.getAuditUserId().split(",")).collect(Collectors.toList());
|
|
|
userIdList.remove(String.valueOf(AuthUtil.getUserId()));
|
|
|
+ userIdList.add(auditProecess.getAuditUserId());
|
|
|
process.setAuditUserId(String.join(",", userIdList));
|
|
|
baseMapper.updateById(process);
|
|
|
|