Commit ae0b29ef authored by shiyu's avatar shiyu

查价详情去除空的参数

parent ee1b6bf2
...@@ -207,7 +207,8 @@ public class CategoryVo implements Serializable { ...@@ -207,7 +207,8 @@ public class CategoryVo implements Serializable {
if (coinExtraInfoEnum.getKey().equals("desc")) { if (coinExtraInfoEnum.getKey().equals("desc")) {
extraInfoMap.put(coinExtraInfoEnum.getName(), category.getDesc()); extraInfoMap.put(coinExtraInfoEnum.getName(), category.getDesc());
} else { } else {
extraInfoMap.put(coinExtraInfoEnum.getName(), null); continue;
//extraInfoMap.put(coinExtraInfoEnum.getName(), null);
} }
extraInfoList.add(extraInfoMap); extraInfoList.add(extraInfoMap);
} }
......
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