Jay
7 天以前 6ea8bed0c8cb5d786a48bdbe4edfdb7cc13555e3
iailab-framework/iailab-common/src/main/java/com/iailab/framework/common/util/object/BeanUtils.java
@@ -59,4 +59,11 @@
        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);
    }
}