|
@@ -264,7 +264,7 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
return result;
|
|
|
}
|
|
|
|
|
|
- @ApiOperation(value="峰平谷用电控制日报", notes="峰平谷用电控制日报")
|
|
|
+ @ApiOperation(value="峰平谷用电控制", notes="峰平谷用电控制")
|
|
|
@GetMapping(value = "/electricityControl")
|
|
|
public JSONObject electricityControl() {
|
|
|
|
|
@@ -274,7 +274,47 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation(value="峰平谷用电控制月报", notes="峰平谷用电控制月报")
|
|
|
+ @ApiOperation(value="峰平谷用电控制设备日报", notes="峰平谷用电控制设备日报")
|
|
|
+ @GetMapping(value = "/electricityControlDay")
|
|
|
+ public JSONObject electricityControlDay() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlDay();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制各线日报", notes="峰平谷用电控制各线日报")
|
|
|
+ @GetMapping(value = "/electricityControlGxDay")
|
|
|
+ public JSONObject electricityControlGxDay() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlGxDay();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制分厂日报", notes="峰平谷用电控制分厂日报")
|
|
|
+ @GetMapping(value = "/electricityControlFcDay")
|
|
|
+ public JSONObject electricityControlFcDay() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlFcDay();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制公司日报", notes="峰平谷用电控制公司日报")
|
|
|
+ @GetMapping(value = "/electricityControlGsDay")
|
|
|
+ public JSONObject electricityControlGsDay() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlGsDay();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制设备月报", notes="峰平谷用电控制设备月报")
|
|
|
@GetMapping(value = "/electricityControlMonth")
|
|
|
public JSONObject electricityControlMonth() {
|
|
|
|
|
@@ -284,6 +324,35 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
}
|
|
|
|
|
|
|
|
|
+ @ApiOperation(value="峰平谷用电控制各线月报", notes="峰平谷用电控制各线月报")
|
|
|
+ @GetMapping(value = "/electricityControlGxMonth")
|
|
|
+ public JSONObject electricityControlGxMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlGxMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制分厂月报", notes="峰平谷用电控制分厂月报")
|
|
|
+ @GetMapping(value = "/electricityControlFcMonth")
|
|
|
+ public JSONObject electricityControlFcMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlFcMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="峰平谷用电控制分厂月报", notes="峰平谷用电控制分厂月报")
|
|
|
+ @GetMapping(value = "/electricityControlGsMonth")
|
|
|
+ public JSONObject electricityControlGsMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.electricityControlGsMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
@ApiOperation(value="峰平谷运行统计表", notes="峰平谷运行统计表")
|
|
|
@GetMapping(value = "/operatingStatistic")
|
|
|
public JSONObject operatingStatistic() {
|
|
@@ -294,7 +363,7 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation(value="谷峰差统计", notes="谷峰差统计")
|
|
|
+ @ApiOperation(value="谷峰差日统计", notes="谷峰差日统计")
|
|
|
@GetMapping(value = "/valleyPeakDifferenceStatistics")
|
|
|
public JSONObject valleyPeakDifferenceStatistics() {
|
|
|
|
|
@@ -304,7 +373,37 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
}
|
|
|
|
|
|
|
|
|
- @ApiOperation(value="谷峰差统计", notes="谷峰差统计")
|
|
|
+ @ApiOperation(value="谷峰差各线日统计", notes="谷峰差各线日统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceGxStatistics")
|
|
|
+ public JSONObject valleyPeakDifferenceGxStatistics() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceGxStatistics();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差分厂日统计", notes="谷峰差分厂日统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceFcStatistics")
|
|
|
+ public JSONObject valleyPeakDifferenceFcStatistics() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceFcStatistics();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差公司日统计", notes="谷峰差公司日统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceGsStatistics")
|
|
|
+ public JSONObject valleyPeakDifferenceGsStatistics() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceGsStatistics();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差设备月统计", notes="谷峰差设备月统计")
|
|
|
@GetMapping(value = "/valleyPeakDifferenceStatisticsMonth")
|
|
|
public JSONObject valleyPeakDifferenceStatisticsMonth() {
|
|
|
|
|
@@ -312,4 +411,33 @@ public class FpgLeanModelController extends JeecgController<FpgLeanModel, IFpgLe
|
|
|
|
|
|
return result;
|
|
|
}
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差各线月统计", notes="谷峰差各线月统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceGxStatisticsMonth")
|
|
|
+ public JSONObject valleyPeakDifferenceGxStatisticsMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceGxStatisticsMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差分厂月统计", notes="谷峰差分厂月统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceFcStatisticsMonth")
|
|
|
+ public JSONObject valleyPeakDifferenceFcStatisticsMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceFcStatisticsMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ @ApiOperation(value="谷峰差公司月统计", notes="谷峰差公司月统计")
|
|
|
+ @GetMapping(value = "/valleyPeakDifferenceGsStatisticsMonth")
|
|
|
+ public JSONObject valleyPeakDifferenceGsStatisticsMonth() {
|
|
|
+
|
|
|
+ JSONObject result = fpgLeanModelService.valleyPeakDifferenceGsStatisticsMonth();
|
|
|
+
|
|
|
+ return result;
|
|
|
+ }
|
|
|
}
|