Bläddra i källkod

添加xEmPoint和yEmPoint字段

wangchangsheng 2 år sedan
förälder
incheckning
a43deeff44

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

@@ -189,6 +189,10 @@ public class ProBasicPowerstation extends Model {
     private Double stationNumber;
     private Integer xPoint;
     private Integer yPoint;
+    private Integer xEmPoint;
+    private Integer yEmPoint;
+
+
 
 
 

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

@@ -237,8 +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());
+            info.put("xPoint",p.getXEmPoint());
+            info.put("yPoint",p.getYEmPoint());
             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));