|
@@ -53,14 +53,41 @@ public class ProEconTestingPointServiceImpl extends ServiceImpl<ProEconTestingPo
|
|
|
public IProBasicPowerstationService proBasicPowerstationService;
|
|
|
|
|
|
@Override
|
|
|
- public void generatePoint(String station, String[] setpoints) {
|
|
|
-
|
|
|
- List<ProBasicEquipmentPoint> equipmentPoints = initalFj(station,setpoints);
|
|
|
- List<ProBasicPowerstationPoint> powerstationPoints = initalFc();
|
|
|
-
|
|
|
+ public void generatePoint(String station, String[] setpoints,String type) {
|
|
|
+
|
|
|
+ List<ProBasicEquipmentPoint> equipmentPoints = new ArrayList<>();
|
|
|
+ List<ProBasicPowerstationPoint> powerstationPoints = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+ switch (type){
|
|
|
+ case "fj":
|
|
|
+ equipmentPoints = initalFj(station, setpoints);
|
|
|
+ proBasicEquipmentPointService.batchAddEquipmentPoint(equipmentPoints);
|
|
|
+ break;
|
|
|
+ case "fc":
|
|
|
+ powerstationPoints = initalFc();
|
|
|
+ proBasicPowerstationPointService.batchAddPowerstationPoints(powerstationPoints);
|
|
|
+ break;
|
|
|
+ case "sbs":
|
|
|
+ generateSubStationPoint(station, setpoints);
|
|
|
+ break;
|
|
|
+ case "ws":
|
|
|
+ generateWsStationPoint(station, setpoints);
|
|
|
+ break;
|
|
|
+ case "sq":
|
|
|
+ generateSquareStationPoint(station, setpoints);
|
|
|
+ break;
|
|
|
+ default:
|
|
|
+ equipmentPoints = initalFj(station, setpoints);
|
|
|
+ powerstationPoints = initalFc();
|
|
|
+ proBasicEquipmentPointService.batchAddEquipmentPoint(equipmentPoints);
|
|
|
+ proBasicPowerstationPointService.batchAddPowerstationPoints(powerstationPoints);
|
|
|
+ generateSubStationPoint(station, setpoints);
|
|
|
+ generateWsStationPoint(station, setpoints);
|
|
|
+ generateSquareStationPoint(station, setpoints);
|
|
|
+ break;
|
|
|
+ }
|
|
|
|
|
|
- proBasicEquipmentPointService.batchAddEquipmentPoint(equipmentPoints);
|
|
|
- proBasicPowerstationPointService.batchAddPowerstationPoints(powerstationPoints);
|
|
|
|
|
|
|
|
|
}
|
|
@@ -138,7 +165,12 @@ public class ProEconTestingPointServiceImpl extends ServiceImpl<ProEconTestingPo
|
|
|
if (null == CacheContext.poSquareMap || CacheContext.poSquareMap.size() <= 0) {
|
|
|
continue;
|
|
|
}
|
|
|
- List<ProBasicSquare> squaare = CacheContext.poSquareMap.get(postation.getId()).stream().filter(i -> i.getTypes().equals("jz")).collect(Collectors.toList());
|
|
|
+ List<ProBasicSquare> squaare = CacheContext.poSquareMap.get(postation.getId());
|
|
|
+ if(null == squaare || squaare.size()<=0){
|
|
|
+ continue;
|
|
|
+ }
|
|
|
+ squaare = squaare.stream().filter(i -> i.getTypes().equals("jz")).collect(Collectors.toList());
|
|
|
+
|
|
|
//循环阵区生成测点code
|
|
|
for (ProBasicSquare ss : squaare) {
|
|
|
List<ProBasicPowerstationPoint> points = new ArrayList<>();
|