Browse Source

单机信息总览线路明细功率曲线接口

shilin 3 years ago
parent
commit
dc8f0e2d21
1 changed files with 25 additions and 8 deletions
  1. 25 8
      src/main/java/com/gyee/frame/model/custom/EchartDataVo.java

+ 25 - 8
src/main/java/com/gyee/frame/model/custom/EchartDataVo.java

@@ -10,16 +10,10 @@ public class EchartDataVo {
     private String name;
     private String xAxis;
 
-    public String getColor() {
-        return color;
-    }
-
-    public void setColor(String color) {
-        this.color = color;
-    }
+    private ItemStyle itemStyle;
 
     private String time;
-    private String color;
+
 
     public String getName() {
         return name;
@@ -44,4 +38,27 @@ public class EchartDataVo {
     public void setTime(String time) {
         this.time = time;
     }
+
+    public ItemStyle getItemStyle() {
+        return itemStyle;
+    }
+
+    public void setItemStyle(ItemStyle itemStyle) {
+        this.itemStyle = itemStyle;
+    }
+
+    public class ItemStyle
+    {
+
+        private String color;
+        public String getColor() {
+            return color;
+        }
+
+        public void setColor(String color) {
+            this.color = color;
+        }
+
+    }
+
 }