升级最新依赖

This commit is contained in:
xingyu4j
2022-12-02 11:37:36 +08:00
parent 7f984c548e
commit fea1ad8f8d
3 changed files with 7 additions and 7 deletions

View File

@ -48,7 +48,7 @@ public interface BpmTaskConvert {
return null;
}
try {
T newInstance = target.newInstance();
T newInstance = target.getDeclaredConstructor().newInstance();
BeanUtils.copyProperties(source, newInstance);
return newInstance;
} catch (Exception e) {