Commit 89921af5 authored by shiyu's avatar shiyu

成交详情

parent 74232b0e
...@@ -96,7 +96,7 @@ public class QueryPriceServiceImpl implements QueryPriceService { ...@@ -96,7 +96,7 @@ public class QueryPriceServiceImpl implements QueryPriceService {
chart.setXData(xData); chart.setXData(xData);
chart.setValues(valueList); chart.setValues(valueList);
map.put("chart", chart); map.put("chart", chart);
map.put("averagePrice", Math.round(averagePrice)); map.put("averagePrice", StringUtil.formatAmount(String.valueOf(Math.round(averagePrice))));
return Result.success(map); return Result.success(map);
} catch (Exception e) { } catch (Exception e) {
logger.error("查询类目价格详情失败:{}", e); logger.error("查询类目价格详情失败:{}", e);
......
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