【功能新增】工作流:完善仿钉钉、飞书模式

This commit is contained in:
YunaiV
2024-10-04 17:47:28 +08:00
parent 18f7591b38
commit 6c325d99e7
95 changed files with 3812 additions and 619 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);
}
}