Commit ece9e4a1 authored by zhangyong's avatar zhangyong

1

parent 41ff0eb1
...@@ -23,7 +23,7 @@ import com.egolm.common.exception.ReflectException; ...@@ -23,7 +23,7 @@ import com.egolm.common.exception.ReflectException;
* *
*/ */
public class Util { public class Util {
public static final String LINE_SEPARATOR = System.getProperty("line.separator");
/** /**
* *
* @Description 多层嵌套Map连续取值 * @Description 多层嵌套Map连续取值
...@@ -775,5 +775,9 @@ public class Util { ...@@ -775,5 +775,9 @@ public class Util {
return StringUtil.isBlank(strval) ? null : ((StringUtil.isInt(strval) || StringUtil.isFloat(strval)) ? new BigDecimal(strval) : null); return StringUtil.isBlank(strval) ? null : ((StringUtil.isInt(strval) || StringUtil.isFloat(strval)) ? new BigDecimal(strval) : null);
} }
public static String[] clzAttributes(Class<?> clz) {
return ReflexUtil.clzAttributes(clz);
}
} }
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment