陈士柏 2 anni fa
parent
commit
e3f164fd38

+ 14 - 0
src/main/java/com/template/model/tongji/All.java

@@ -0,0 +1,14 @@
+package com.template.model.tongji;
+
+public class All {
+
+    public Integer total;
+
+    public Integer getTotal() {
+        return total;
+    }
+
+    public void setTotal(Integer total) {
+        this.total = total;
+    }
+}

+ 16 - 0
src/main/java/com/template/model/tongji/DAll.java

@@ -0,0 +1,16 @@
+package com.template.model.tongji;
+
+import com.template.common.utils.DataBliu;
+
+public class DAll {
+
+    public Double num;
+
+    public Double getNum() {
+        return DataBliu.getTwo(num);
+    }
+
+    public void setNum(Double num) {
+        this.num = num;
+    }
+}

+ 41 - 0
src/main/java/com/template/model/tongji/DayMeterDetail.java

@@ -0,0 +1,41 @@
+package com.template.model.tongji;
+
+public class DayMeterDetail {
+
+    public Integer id;
+    public String meterName;
+    public String meterDate;
+    public String meterPower;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getMeterName() {
+        return meterName;
+    }
+
+    public void setMeterName(String meterName) {
+        this.meterName = meterName;
+    }
+
+    public String getMeterDate() {
+        return meterDate;
+    }
+
+    public void setMeterDate(String meterDate) {
+        this.meterDate = meterDate;
+    }
+
+    public String getMeterPower() {
+        return meterPower;
+    }
+
+    public void setMeterPower(String meterPower) {
+        this.meterPower = meterPower;
+    }
+}

+ 53 - 0
src/main/java/com/template/model/tongji/EnergyTj.java

@@ -0,0 +1,53 @@
+package com.template.model.tongji;
+
+import com.template.common.utils.DataBliu;
+
+public class EnergyTj {
+
+    public Integer id;
+    public String name;
+    public Integer type;
+    public String date;
+    public Double num;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public Integer getType() {
+        return type;
+    }
+
+    public void setType(Integer type) {
+        this.type = type;
+    }
+
+    public String getDate() {
+        return date;
+    }
+
+    public void setDate(String date) {
+        this.date = date;
+    }
+
+    public Double getNum() {
+        return DataBliu.getTwo(num);
+    }
+
+    public void setNum(Double num) {
+        this.num = num;
+    }
+
+}

+ 50 - 0
src/main/java/com/template/model/tongji/MeterMonthData.java

@@ -0,0 +1,50 @@
+package com.template.model.tongji;
+
+public class MeterMonthData {
+
+    public Integer id;
+    public String name;
+    public String date;
+    public Double wNum;
+    public Double eNum;
+
+    public Integer getId() {
+        return id;
+    }
+
+    public void setId(Integer id) {
+        this.id = id;
+    }
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public String getDate() {
+        return date;
+    }
+
+    public void setDate(String date) {
+        this.date = date;
+    }
+
+    public Double getwNum() {
+        return wNum;
+    }
+
+    public void setwNum(Double wNum) {
+        this.wNum = wNum;
+    }
+
+    public Double geteNum() {
+        return eNum;
+    }
+
+    public void seteNum(Double eNum) {
+        this.eNum = eNum;
+    }
+}

+ 25 - 0
src/main/java/com/template/model/tongji/MonthMeterDetail.java

@@ -0,0 +1,25 @@
+package com.template.model.tongji;
+
+import java.util.List;
+
+public class MonthMeterDetail {
+
+    public String date;
+    public List<Tj> lt;
+
+    public String getDate() {
+        return date;
+    }
+
+    public void setDate(String date) {
+        this.date = date;
+    }
+
+    public List<Tj> getLt() {
+        return lt;
+    }
+
+    public void setLt(List<Tj> lt) {
+        this.lt = lt;
+    }
+}

+ 24 - 0
src/main/java/com/template/model/tongji/Tj.java

@@ -0,0 +1,24 @@
+package com.template.model.tongji;
+
+public class Tj {
+
+    public String name;
+    public Integer num;
+
+    public String getName() {
+        return name;
+    }
+
+    public void setName(String name) {
+        this.name = name;
+    }
+
+    public Integer getNum() {
+        return num;
+    }
+
+    public void setNum(Integer num) {
+        this.num = num;
+    }
+
+}