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