!229 新增工作流扩展spel表达式

* add: 新增 FlowSpel 相关 sql 脚本 ;
This commit is contained in:
MichelleChung
2025-07-06 07:52:47 +00:00
committed by 疯狂的狮子Li
parent 77a245c13b
commit a4d21e06c0
25 changed files with 862 additions and 7 deletions

View File

@@ -52,14 +52,14 @@ public class RemoteTaskAssigneeVo implements Serializable {
*/
public static <T> List<TaskHandler> convertToHandlerList(
List<T> sourceList,
Function<T, Long> storageId,
Function<T, String> storageId,
Function<T, String> handlerCode,
Function<T, String> handlerName,
Function<T, Long> groupName,
Function<T, Date> createTimeMapper) {
return sourceList.stream()
.map(item -> new TaskHandler(
String.valueOf(storageId.apply(item)),
storageId.apply(item),
handlerCode.apply(item),
handlerName.apply(item),
groupName != null ? String.valueOf(groupName.apply(item)) : null,