2 コミット 2ff4397ca6 ... 2434b73349

作者 SHA1 メッセージ 日付
  lipenghui 2434b73349 Merge remote-tracking branch 'origin/master' 1 日 前
  lipenghui 6a95cca054 首页多语言 1 日 前

+ 4 - 4
yudao-module-pms/yudao-module-pms-biz/src/main/java/cn/iocoder/yudao/module/pms/controller/admin/stat/IotStaticController.java

@@ -894,8 +894,8 @@ public class IotStaticController {
             waterData.add(v);
         });
 
-        ImmutableMap<String, Serializable> fillResult = ImmutableMap.of("name", "累计注气量", "data", fillData);
-        ImmutableMap<String, Serializable> waterResult = ImmutableMap.of("name", "累计注水量", "data", waterData);
+        ImmutableMap<String, Serializable> fillResult = ImmutableMap.of("name", "累计注气量~~en**cumulative gas injection", "data", fillData);
+        ImmutableMap<String, Serializable> waterResult = ImmutableMap.of("name", "累计注水量~~en**cumulative water injection", "data", waterData);
         return success(ImmutableMap.of("xAxis", xAxis, "series", ImmutableList.of(fillResult,waterResult)));
 
     }
@@ -948,8 +948,8 @@ public class IotStaticController {
             waterData.add(v);
         });
 
-        ImmutableMap<String, Serializable> fillResult = ImmutableMap.of("name", "当日注气量", "data", fillData);
-        ImmutableMap<String, Serializable> waterResult = ImmutableMap.of("name", "当日注水量", "data", waterData);
+        ImmutableMap<String, Serializable> fillResult = ImmutableMap.of("name", "当日注气量~~en**daily gas injection", "data", fillData);
+        ImmutableMap<String, Serializable> waterResult = ImmutableMap.of("name", "当日注水量~~en**daily water injection", "data", waterData);
         return success(ImmutableMap.of("xAxis", xAxis, "series", ImmutableList.of(fillResult, waterResult)));
 
     }