|
@@ -6,6 +6,7 @@ import com.baomidou.mybatisplus.core.conditions.query.QueryWrapper;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
|
|
+import com.gyee.power.fitting.model.Device;
|
|
import com.gyee.power.fitting.model.PhotovoltaicAnalysis;
|
|
import com.gyee.power.fitting.model.PhotovoltaicAnalysis;
|
|
import com.gyee.power.fitting.model.ProBasicEquipment;
|
|
import com.gyee.power.fitting.model.ProBasicEquipment;
|
|
import com.gyee.power.fitting.model.StateCause;
|
|
import com.gyee.power.fitting.model.StateCause;
|
|
@@ -19,10 +20,7 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
import javax.annotation.Resource;
|
|
-import java.util.Collections;
|
|
|
|
-import java.util.Date;
|
|
|
|
-import java.util.List;
|
|
|
|
-import java.util.Map;
|
|
|
|
|
|
+import java.util.*;
|
|
import java.util.stream.Collectors;
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
/**
|
|
@@ -55,14 +53,29 @@ public class PhotovoltaicAnalysisController {
|
|
@RequestParam("pageSize") int pageSize) {
|
|
@RequestParam("pageSize") int pageSize) {
|
|
|
|
|
|
List<ProBasicEquipment> equipments = proBasicEquipmentService.getStationMap(type).get(stationId);
|
|
List<ProBasicEquipment> equipments = proBasicEquipmentService.getStationMap(type).get(stationId);
|
|
- QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
|
|
|
|
- Page<StateCause> page = new Page<>(pageNum, pageSize);
|
|
|
|
- scWrapper.in("equipment_id", equipments).gt("start_time", startTime).lt("end_time", endTime);
|
|
|
|
- PageMap<StateCause> stateCauses = (PageMap<StateCause>) stateCauseService.page(page, scWrapper);
|
|
|
|
|
|
+ if (equipments == null) return JsonResult.successData(ResultCode.SUCCESS, new HashMap<>());
|
|
|
|
+ Map<String, String> stringMap = equipments.stream().collect(Collectors.toMap(ProBasicEquipment::getId, ProBasicEquipment::getNemCode));
|
|
|
|
+ List<String> collect = equipments.stream().map(ProBasicEquipment::getId).collect(Collectors.toList());
|
|
|
|
+
|
|
|
|
+ List<String> pageItems = collect.subList(pageSize * (pageNum - 1), Math.min(collect.size(), pageSize * pageNum));
|
|
|
|
|
|
- stateCauses.setRecordMap(stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId)));
|
|
|
|
- stateCauses.setRecords(Collections.emptyList());
|
|
|
|
- return JsonResult.successData(ResultCode.SUCCESS, stateCauses);
|
|
|
|
|
|
+ QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
|
|
|
|
+// Page<StateCause> page = new Page<>(pageNum, pageSize);
|
|
|
|
+ scWrapper.eq("state_type", "8种状态").in("equipment_id", pageItems)
|
|
|
|
+ .gt("start_time", startTime).lt("end_time", endTime);
|
|
|
|
+ List<StateCause> list = stateCauseService.list(scWrapper);
|
|
|
|
+ Map<String, List<StateCause>> listMap = list.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId));
|
|
|
|
+// PageMap<StateCause> stateCauses = (PageMap<StateCause>) stateCauseService.page(page, scWrapper);
|
|
|
|
+
|
|
|
|
+// stateCauses.setRecordMap(stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId)));
|
|
|
|
+// stateCauses.setRecords(Collections.emptyList());
|
|
|
|
+
|
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
|
+ map.put("total", collect.size());
|
|
|
|
+ map.put("size", listMap.size());
|
|
|
|
+ map.put("current", pageNum);
|
|
|
|
+ map.put("data", listMap);
|
|
|
|
+ return JsonResult.successData(ResultCode.SUCCESS, map);
|
|
}
|
|
}
|
|
|
|
|
|
//状态时间
|
|
//状态时间
|
|
@@ -75,18 +88,79 @@ public class PhotovoltaicAnalysisController {
|
|
@RequestParam("pageNum") int pageNum,
|
|
@RequestParam("pageNum") int pageNum,
|
|
@RequestParam("pageSize") int pageSize) {
|
|
@RequestParam("pageSize") int pageSize) {
|
|
|
|
|
|
- List<ProBasicEquipment> equipments = proBasicEquipmentService.getStationMap(type).get(stationId);
|
|
|
|
|
|
+ Map<String, List<ProBasicEquipment>> stationMap = proBasicEquipmentService.getStationMap(type);
|
|
|
|
+ List<ProBasicEquipment> equipments = stationMap.get(stationId);
|
|
|
|
+ if (equipments == null) return JsonResult.successData(ResultCode.SUCCESS, new HashMap<>());
|
|
|
|
+ Map<String, String> stringMap = equipments.stream().collect(Collectors.toMap(ProBasicEquipment::getId, ProBasicEquipment::getNemCode));
|
|
|
|
+ List<String> collect = equipments.stream().map(ProBasicEquipment::getId).collect(Collectors.toList());
|
|
|
|
+
|
|
|
|
+ List<String> pageItems = collect.subList(pageSize * (pageNum - 1), Math.min(collect.size(), pageSize * pageNum));
|
|
|
|
+
|
|
QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
|
|
QueryWrapper<StateCause> scWrapper = new QueryWrapper<>();
|
|
- Page<StateCause> page = new Page<>(pageNum, pageSize);
|
|
|
|
- scWrapper.in("equipment_id", equipments).gt("start_time", startTime).lt("end_time", endTime);
|
|
|
|
- PageMap<StateCause> stateCauses = (PageMap<StateCause>) stateCauseService.page(page, scWrapper);
|
|
|
|
|
|
+// Page<StateCause> page = new Page<>(pageNum, pageSize);
|
|
|
|
+ scWrapper.select("equipment_id,event,sum(time)/3600 hour");
|
|
|
|
+ scWrapper.eq("state_type", "8种状态").in("equipment_id", pageItems)
|
|
|
|
+ .gt("start_time", startTime).lt("end_time", endTime);
|
|
|
|
+ ;
|
|
|
|
+ scWrapper.groupBy("equipment_id,event");
|
|
|
|
+ List<StateCause> causePage = stateCauseService.list(scWrapper);
|
|
|
|
+ Map<String, List<StateCause>> listMap = causePage.stream().peek(sc -> sc.setEquipmentId(stringMap.get(sc.getEquipmentId()))).collect(Collectors.groupingBy(StateCause::getEquipmentId));
|
|
|
|
+ List<Device> deviceList = statecauses2Devices(listMap);
|
|
|
|
+ /*PageMap<StateCause> pageMap = new PageMap<>();
|
|
|
|
+ pageMap.
|
|
|
|
+ PageMap<StateCause> stateCauses = (PageMap<StateCause>) causePage;
|
|
|
|
|
|
Map<String, Map<Short, Double>> collect = stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId,
|
|
Map<String, Map<Short, Double>> collect = stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId,
|
|
Collectors.groupingBy(StateCause::getEvent, Collectors.summingDouble(t -> t.getTime() / (60 * 24.0)))));
|
|
Collectors.groupingBy(StateCause::getEvent, Collectors.summingDouble(t -> t.getTime() / (60 * 24.0)))));
|
|
|
|
|
|
stateCauses.setRecordMap(collect);
|
|
stateCauses.setRecordMap(collect);
|
|
- stateCauses.setRecords(Collections.emptyList());
|
|
|
|
- return JsonResult.successData(ResultCode.SUCCESS, stateCauses);
|
|
|
|
|
|
+ stateCauses.setRecords(Collections.emptyList());*/
|
|
|
|
+
|
|
|
|
+// protected long total;
|
|
|
|
+// protected long size;
|
|
|
|
+// protected long current;
|
|
|
|
+ Map<String, Object> map = new HashMap<>();
|
|
|
|
+ map.put("total", collect.size());
|
|
|
|
+ map.put("size", deviceList.size());
|
|
|
|
+ map.put("current", pageNum);
|
|
|
|
+ map.put("data", deviceList);
|
|
|
|
+ return JsonResult.successData(ResultCode.SUCCESS, map);
|
|
|
|
+ }
|
|
|
|
+
|
|
|
|
+ private List<Device> statecauses2Devices(Map<String, List<StateCause>> listMap) {
|
|
|
|
+ List<Device> deviceList = new ArrayList<>();
|
|
|
|
+ listMap.forEach((wt, scs) -> {
|
|
|
|
+ Device device = new Device();
|
|
|
|
+ device.setStationId(scs.get(0).getStationId());
|
|
|
|
+ device.setDeviceId(wt);
|
|
|
|
+ scs.forEach(sc -> {
|
|
|
|
+ switch (sc.getEvent()) {
|
|
|
|
+ case 0:
|
|
|
|
+ device.setStandbyTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 1:
|
|
|
|
+ device.setGridConnectionTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 2:
|
|
|
|
+ device.setFaultTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 3:
|
|
|
|
+ device.setMaintenanceTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 4:
|
|
|
|
+ device.setPowerLimitTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 5:
|
|
|
|
+ device.setStressedTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ case 6:
|
|
|
|
+ device.setOfflineTime(sc.getHour());
|
|
|
|
+ break;
|
|
|
|
+ }
|
|
|
|
+ });
|
|
|
|
+ deviceList.add(device);
|
|
|
|
+ });
|
|
|
|
+ return deviceList;
|
|
}
|
|
}
|
|
|
|
|
|
@GetMapping("/analysis")
|
|
@GetMapping("/analysis")
|