Commit 916a3976 authored by caotao's avatar caotao

大屏未做发电量小数位保留处理

parent efcf7bdf
......@@ -251,9 +251,9 @@ public class LargeScreenImpl {
}
mapdta.put("RSD", dailyPower.get());
mapdta.put("YFD", monthlyPower.get());
mapdta.put("NFD", annualPower.get());
mapdta.put("RSD", keepFourdecimalPlaces(dailyPower.get()));
mapdta.put("YFD", keepFourdecimalPlaces(monthlyPower.get()));
mapdta.put("NFD", keepFourdecimalPlaces(annualPower.get()));
// //总和
......
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