Commit 9a24080a authored by 张永's avatar 张永
parents 8b14b880 fc664003
...@@ -361,7 +361,11 @@ public class Util { ...@@ -361,7 +361,11 @@ public class Util {
for(String key : keyName) { for(String key : keyName) {
Object obj = map.get(key); Object obj = map.get(key);
if(obj != null) { if(obj != null) {
keys.add(String.valueOf(obj)); if(obj instanceof Date) {
keys.add(DateUtil.format((Date)obj));
} else {
keys.add(String.valueOf(obj));
}
} }
} }
String fullKey = StringUtil.join(bar, keys); String fullKey = StringUtil.join(bar, keys);
......
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