Commit 779497ce authored by yanzg's avatar yanzg

默认日期格式的支持

parent 3f500613
......@@ -42,6 +42,17 @@ public class ArrayHelper {
return isArray;
}
/**
* 判断对象是否是数组或者List
*
* @param val
* @return
*/
public static boolean isEmpty(List val) {
return val == null || val.isEmpty();
}
/**
* 获取对象为对象列表
*
......
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