【功能新增】工作流:BPM Model 增加 type 标记是 BPMN 设计器,还是 SIMPLE 钉钉设计器

This commit is contained in:
YunaiV
2024-08-26 18:38:32 +08:00
parent c26862f3e4
commit ff6bee964b
17 changed files with 230 additions and 249 deletions

View File

@ -59,4 +59,11 @@ public class BeanUtils {
return new PageResult<>(list, source.getTotal());
}
public static void copyProperties(Object source, Object target) {
if (source == null || target == null) {
return;
}
BeanUtil.copyProperties(source, target, false);
}
}