|
@@ -7,7 +7,11 @@ import com.baomidou.mybatisplus.extension.plugins.pagination.Page;
|
|
|
import com.gyee.power.fitting.common.result.JsonResult;
|
|
|
import com.gyee.power.fitting.common.result.ResultCode;
|
|
|
import com.gyee.power.fitting.model.PhotovoltaicAnalysis;
|
|
|
+import com.gyee.power.fitting.model.ProBasicEquipment;
|
|
|
+import com.gyee.power.fitting.model.StateCause;
|
|
|
+import com.gyee.power.fitting.model.vo.PageMap;
|
|
|
import com.gyee.power.fitting.service.IPhotovoltaicAnalysisService;
|
|
|
+import com.gyee.power.fitting.service.IStateCauseService;
|
|
|
import com.gyee.power.fitting.service.ProBasicEquipmentService;
|
|
|
import org.springframework.web.bind.annotation.GetMapping;
|
|
|
import org.springframework.web.bind.annotation.RequestMapping;
|
|
@@ -15,7 +19,9 @@ import org.springframework.web.bind.annotation.RequestParam;
|
|
|
import org.springframework.web.bind.annotation.RestController;
|
|
|
|
|
|
import javax.annotation.Resource;
|
|
|
+import java.util.Collections;
|
|
|
import java.util.Date;
|
|
|
+import java.util.List;
|
|
|
import java.util.Map;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
@@ -35,6 +41,53 @@ public class PhotovoltaicAnalysisController {
|
|
|
private IPhotovoltaicAnalysisService photovoltaicAnalysisService;
|
|
|
@Resource
|
|
|
private ProBasicEquipmentService proBasicEquipmentService;
|
|
|
+ @Resource
|
|
|
+ private IStateCauseService stateCauseService;
|
|
|
+
|
|
|
+ //状态转换
|
|
|
+ @GetMapping("/state_transition")
|
|
|
+ public JSONObject stateTransition(
|
|
|
+ @RequestParam("stationId") String stationId,
|
|
|
+ @RequestParam("startTime") Long startTime,
|
|
|
+ @RequestParam("endTime") Long endTime,
|
|
|
+ @RequestParam("type") String type,
|
|
|
+ @RequestParam("pageNum") int pageNum,
|
|
|
+ @RequestParam("pageSize") int pageSize) {
|
|
|
+
|
|
|
+ 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);
|
|
|
+
|
|
|
+ stateCauses.setRecordMap(stateCauses.getRecords().stream().collect(Collectors.groupingBy(StateCause::getEquipmentId)));
|
|
|
+ stateCauses.setRecords(Collections.emptyList());
|
|
|
+ return JsonResult.successData(ResultCode.SUCCESS, stateCauses);
|
|
|
+ }
|
|
|
+
|
|
|
+ //状态时间
|
|
|
+ @GetMapping("/state_time")
|
|
|
+ public JSONObject stateTime(
|
|
|
+ @RequestParam("stationId") String stationId,
|
|
|
+ @RequestParam("startTime") Long startTime,
|
|
|
+ @RequestParam("endTime") Long endTime,
|
|
|
+ @RequestParam("type") String type,
|
|
|
+ @RequestParam("pageNum") int pageNum,
|
|
|
+ @RequestParam("pageSize") int pageSize) {
|
|
|
+
|
|
|
+ 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);
|
|
|
+
|
|
|
+ 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)))));
|
|
|
+
|
|
|
+ stateCauses.setRecordMap(collect);
|
|
|
+ stateCauses.setRecords(Collections.emptyList());
|
|
|
+ return JsonResult.successData(ResultCode.SUCCESS, stateCauses);
|
|
|
+ }
|
|
|
|
|
|
@GetMapping("/analysis")
|
|
|
public JSONObject photovoltaicAnalysis(
|
|
@@ -68,7 +121,7 @@ public class PhotovoltaicAnalysisController {
|
|
|
Page<PhotovoltaicAnalysis> page = new Page<>(pageNum, pageSize);
|
|
|
Page<PhotovoltaicAnalysis> list = photovoltaicAnalysisService.page(page, wrapper);
|
|
|
|
|
|
- Map<String, String> collect = proBasicEquipmentService.getStationMap("IN");
|
|
|
+ Map<String, String> collect = proBasicEquipmentService.getWtNcMap("IN");
|
|
|
|
|
|
list.setRecords(list.getRecords().stream().peek(pa -> pa.setEquipmentId(collect.get(pa.getEquipmentId()))).collect(Collectors.toList()));
|
|
|
return JsonResult.successData(ResultCode.SUCCESS, list);
|