Преглед на файлове

添加yPoint和xPoint字段

wangchangsheng преди 2 години
родител
ревизия
a94db55f06

+ 2 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/model/auto/ProBasicPowerstation.java

@@ -187,6 +187,8 @@ public class ProBasicPowerstation extends Model {
     private Date wholeGridTime;
     private Double anemoNumber;
     private Double stationNumber;
+    private Integer xPoint;
+    private Integer yPoint;
 
 
 

+ 2 - 0
web/runeconomy-xk/src/main/java/com/gyee/runeconomy/service/homepage/EconomyPointHomePageService.java

@@ -237,6 +237,8 @@ public class EconomyPointHomePageService {
             info.put("name", p.getName());
             info.put("nemCode", p.getNemCode());
             info.put("capacity", (p.getWindCapacity() + p.getCapacity()) / 10000);
+            info.put("xPoint",p.getXPoint());
+            info.put("yPoint",p.getYPoint());
             if (null != day1) {
                 info.put("fdl", day1.getRfdl().divide(new BigDecimal(10000), 2, BigDecimal.ROUND_HALF_UP));
                 info.put("fnlyl", compare0(day1.getRllfdl()) ? compare100(day1.getRfdl().divide(day1.getRllfdl(), 4, BigDecimal.ROUND_HALF_UP).multiply(new BigDecimal("100"))) : new BigDecimal(0));