Merge branch 'feature/countersign_ext' into dev

This commit is contained in:
wangli 2025-10-20 15:41:46 +08:00
commit 0bf8a65f6f

View File

@ -254,7 +254,7 @@ public class CustomCountersignUserTaskCmd extends AbstractCommand<Void> implemen
int fragmentIndex = originalId.indexOf(fragment);
return originalId.substring(0, fragmentIndex) + fragment + count;
}
return originalId; // 不包含目标片段时返回原字符串
return originalId + fragment + count; // 不包含目标片段时返回原字符串
}