wuxw
2020-02-08 860e16e20cc4cebfd97fe7369e6bfed85d35505a
java110-utils/src/main/java/com/java110/utils/util/Java110Converter.java
@@ -26,6 +26,10 @@
    }
    public static Object getValue(Object value, Class target) {
        if (value == null) {
            return value;
        }
        //1.0 String 转 Date
        if (value instanceof String && target == Date.class) {
            String date = (String) value;