|
@@ -28,14 +28,17 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
private IProEconTestingPointService proEconTestingPointService;
|
|
|
|
|
|
private final String FJ = "fj";
|
|
|
- private final String FJJSFW = "fjjsfw";
|
|
|
- private final String GFJSFW = "gfjsfw";
|
|
|
+ private final String FJJSFW = "fjc";
|
|
|
+ private final String GFJSFW = "gfc";
|
|
|
private final String GF = "gf";
|
|
|
|
|
|
- private final String GCJSFW = "gcjsfw";
|
|
|
- private final String FCJSFW = "fcjsfw";
|
|
|
+ private final String GCJSFW = "gcc";
|
|
|
+ private final String FCJSFW = "fcc";
|
|
|
|
|
|
+ private final String AGC = "agcc";
|
|
|
+ private final String FGL = "fggl";
|
|
|
|
|
|
+ private final String CFT = "cft";
|
|
|
|
|
|
@Override
|
|
|
public void initalFc() throws IOException {
|
|
@@ -69,7 +72,7 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
sba.append(re.getId().substring(0,re.getId().indexOf("_"))).append("_");
|
|
|
/********************************************区域公司测点**************************************************/
|
|
|
|
|
|
-
|
|
|
+
|
|
|
List<ProBasicPowerstationPoint> points=new ArrayList<>();
|
|
|
for(int i=0;i<pointls.size();i++)
|
|
|
{
|
|
@@ -82,10 +85,10 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
sb.append("XXXX_XXX_X_XX_XX_XXXX_");
|
|
|
sb.append("CI");
|
|
|
sb.append(stp.getNemCode());
|
|
|
-
|
|
|
+
|
|
|
sbtable.append("JSFW.");
|
|
|
sbtable.append(sb);
|
|
|
-
|
|
|
+
|
|
|
ProBasicPowerstationPoint po=new ProBasicPowerstationPoint();
|
|
|
po.setId(StringUtils.getUUID());
|
|
|
// po.setNemCode(V2Config.getInitialcode());
|
|
@@ -449,18 +452,193 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void initalSyz() {
|
|
|
+ public void initalZb() throws IOException {
|
|
|
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
- public void initalDd() throws IOException {
|
|
|
+ public void initalQx() throws IOException {
|
|
|
+
|
|
|
+ List<ProBasicPowerstationPoint> allpoints = new ArrayList<>();
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> fcs = proEconTestingPointService.list().stream().filter(i -> i.getTypeId().equals("cft")).collect(Collectors.toList());
|
|
|
+ List<ProEconTestingPoint> gcs = proEconTestingPointService.list().stream().filter(i -> i.getTypeId().equals("qxz")).collect(Collectors.toList());
|
|
|
+ //获取场站
|
|
|
+ for (ProBasicPowerstation postation : CacheContext.wpls) {
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> ls = null;
|
|
|
+ if (postation.getId().indexOf("FDC") >= 0) {
|
|
|
+ ls = fcs;
|
|
|
+ } else {
|
|
|
+ ls = gcs;
|
|
|
+ }
|
|
|
+
|
|
|
+ //获取场站下的气象站
|
|
|
+ List<ProBasicWeatherStation> subStations = CacheContext.poWsStationMap.get(postation.getId());
|
|
|
+ //循环气象站生成测点code
|
|
|
+ for (ProBasicWeatherStation ws : subStations) {
|
|
|
+ List<ProBasicPowerstationPoint> points = new ArrayList<>();
|
|
|
+
|
|
|
+ for (ProEconTestingPoint p : ls) {
|
|
|
+
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+ String temp = ws.getId().substring(0, ws.getId().lastIndexOf("_"));
|
|
|
+// temp = temp.substring(0, temp.lastIndexOf("_"));
|
|
|
+// temp = temp.substring(temp.lastIndexOf("_") + 1);
|
|
|
+ if (ws.getWindpowerstationId().indexOf("FDC") >= 0) {
|
|
|
+ sb.append(temp).append("_F_");
|
|
|
+ } else {
|
|
|
+ sb.append(temp).append("_G_");
|
|
|
+ }
|
|
|
+
|
|
|
+ sb.append("XX_XX_XXXX_");
|
|
|
+ sb.append(p.getTypeId().toUpperCase()).append("_");
|
|
|
+ if (p.getUniformCode().indexOf("AI") >= 0) {
|
|
|
+ sb.append("AI");
|
|
|
+
|
|
|
+ } else if (p.getUniformCode().indexOf("DI") >= 0) {
|
|
|
+ sb.append("DI");
|
|
|
+
|
|
|
+ } else {
|
|
|
+ sb.append("CI");
|
|
|
+ }
|
|
|
+ sb.append(p.getNemCode());
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sba = new StringBuilder();
|
|
|
+
|
|
|
+ String temp2 = postation.getCompanyId().substring(0, postation.getCompanyId().lastIndexOf("_"));
|
|
|
+ temp2 = temp2.substring(temp2.indexOf("_") + 1);
|
|
|
|
|
|
+ String temp3 = postation.getId().substring(0, postation.getId().lastIndexOf("_"));
|
|
|
+ temp3 = temp3.substring(0, temp3.lastIndexOf("_"));
|
|
|
+ temp3 = temp3.substring(temp3.lastIndexOf("_") + 1);
|
|
|
+ if (postation.getId().indexOf("FDC") >= 0) {
|
|
|
+ sba.append(temp2).append(temp3).append("FC");
|
|
|
+ } else if (postation.getId().indexOf("GDC") >= 0) {
|
|
|
+ sba.append(temp2).append(temp3).append("GC");
|
|
|
+ }
|
|
|
+
|
|
|
+ StringBuilder sbtable = new StringBuilder();
|
|
|
+
|
|
|
+
|
|
|
+ sbtable.append(sba).append(sb);
|
|
|
+ ProBasicPowerstationPoint po = new ProBasicPowerstationPoint();
|
|
|
+ po.setId(com.gyee.common.model.StringUtils.getUUID());
|
|
|
+// if (p.getTypeId().indexOf("agcjsfw") >= 0 ) {
|
|
|
+// po.setNemCode(String.valueOf(sbtable));
|
|
|
+// } else {
|
|
|
+ po.setNemCode(String.valueOf(sbtable));
|
|
|
+// }
|
|
|
+ sb = new StringBuilder();
|
|
|
+ sb.append(ws.getName()).append(p.getName());
|
|
|
+ po.setName(String.valueOf(sb));
|
|
|
+ po.setWindpowerstationId(ws.getId());
|
|
|
+ po.setUniformCode(p.getUniformCode());
|
|
|
+ po.setTypeId(p.getTypeId());
|
|
|
+ po.setRealtimeId(String.valueOf(sbtable).substring(0,sbtable.indexOf(".")));
|
|
|
+
|
|
|
+ points.add(po);
|
|
|
+ }
|
|
|
+ allpoints.addAll(points);
|
|
|
+ }
|
|
|
+ }
|
|
|
+ // 编号,编码,名称,实时库名称,型号,单位,英文名称,类型编号,所属型号,最大值,最小值,合理最大值,合理最小值,统一编码,短ID,长ID,场站编号,实时配置编号,集团测点编号,具体名称,系数
|
|
|
+ String[] arr = new String[]{"编号", "编码", "名称","实时库名称", "型号", "单位", "英文名称", "类型编号", "所属型号", "最大值", "最小值", "合理最大值",
|
|
|
+ "合理最小值", "统一编码", "短ID", "长ID", "风场编号", "实时配置编号", "集团测点编号", "具体名称", "系数"};
|
|
|
+ String heardName = "气象测点表";
|
|
|
+ //调用Excel导出工具类
|
|
|
+ ExcelExport.exportToPath(allpoints, arr, heardName, 6, "气象测点表");
|
|
|
}
|
|
|
|
|
|
@Override
|
|
|
public void initalFgl() throws IOException {
|
|
|
|
|
|
+
|
|
|
+ List<ProBasicPowerstationPoint> allpoints = new ArrayList<>();
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> ls=proEconTestingPointService.list().stream().filter(i -> i.getTypeId().equals(FGL) || i.getTypeId().equals(AGC) ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ //循环变电所生成测点code
|
|
|
+ for (ProBasicSubStation sub : CacheContext.subwpls) {
|
|
|
+ List<ProBasicPowerstationPoint> points = new ArrayList<>();
|
|
|
+
|
|
|
+ if(CacheContext.wpmap.containsKey(sub.getWindpowerstationId()))
|
|
|
+ {
|
|
|
+ ProBasicPowerstation postation=CacheContext.wpmap.get(sub.getWindpowerstationId());
|
|
|
+
|
|
|
+ for (ProEconTestingPoint p : ls) {
|
|
|
+
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+ String temp = sub.getId().substring(0, sub.getId().lastIndexOf("_"));
|
|
|
+// temp = temp.substring(0, temp.lastIndexOf("_"));
|
|
|
+// temp = temp.substring(temp.lastIndexOf("_") + 1);
|
|
|
+ if (sub.getWindpowerstationId().indexOf("FDC") >= 0) {
|
|
|
+ sb.append(temp).append("_F_");
|
|
|
+ } else {
|
|
|
+ sb.append(temp).append("_G_");
|
|
|
+ }
|
|
|
+
|
|
|
+ sb.append("XX_XX_XXXX_");
|
|
|
+ sb.append(p.getTypeId().toUpperCase()).append("_");
|
|
|
+ if (p.getUniformCode().indexOf("AI") >= 0) {
|
|
|
+ sb.append("AI");
|
|
|
+
|
|
|
+ } else if (p.getUniformCode().indexOf("DI") >= 0) {
|
|
|
+ sb.append("DI");
|
|
|
+
|
|
|
+ } else {
|
|
|
+ sb.append("CI");
|
|
|
+ }
|
|
|
+ sb.append(p.getNemCode());
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sba = new StringBuilder();
|
|
|
+
|
|
|
+ String temp2 = postation.getCompanyId().substring(0, postation.getCompanyId().lastIndexOf("_"));
|
|
|
+ temp2 = temp2.substring(temp2.indexOf("_") + 1);
|
|
|
+
|
|
|
+ String temp3 = postation.getId().substring(0, postation.getId().lastIndexOf("_"));
|
|
|
+ temp3 = temp3.substring(0, temp3.lastIndexOf("_"));
|
|
|
+ temp3 = temp3.substring(temp3.lastIndexOf("_") + 1);
|
|
|
+ if (postation.getId().indexOf("FDC") >= 0) {
|
|
|
+ sba.append(temp2).append(temp3).append("FC");
|
|
|
+ } else if (postation.getId().indexOf("GDC") >= 0) {
|
|
|
+ sba.append(temp2).append(temp3).append("GC");
|
|
|
+ }
|
|
|
+
|
|
|
+ StringBuilder sbtable = new StringBuilder();
|
|
|
+
|
|
|
+ sbtable.append(sba).append(".");
|
|
|
+ sbtable.append(sb);
|
|
|
+
|
|
|
+
|
|
|
+ ProBasicPowerstationPoint po = new ProBasicPowerstationPoint();
|
|
|
+ po.setId(com.gyee.common.model.StringUtils.getUUID());
|
|
|
+
|
|
|
+ po.setNemCode(String.valueOf(sbtable));
|
|
|
+
|
|
|
+ sb = new StringBuilder();
|
|
|
+ sb.append(sub.getName()).append(p.getName());
|
|
|
+ po.setName(String.valueOf(sb));
|
|
|
+ po.setWindpowerstationId(sub.getId());
|
|
|
+ po.setUniformCode(p.getUniformCode());
|
|
|
+ po.setTypeId(p.getTypeId());
|
|
|
+ po.setRealtimeId(String.valueOf(sbtable).substring(0,sbtable.indexOf(".")));
|
|
|
+ points.add(po);
|
|
|
+ }
|
|
|
+ allpoints.addAll(points);
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ // 编号,编码,名称,实时库名称,型号,单位,英文名称,类型编号,所属型号,最大值,最小值,合理最大值,合理最小值,统一编码,短ID,长ID,场站编号,实时配置编号,集团测点编号,具体名称,系数
|
|
|
+ String[] arr = new String[]{"编号", "编码", "名称","实时库名称", "型号", "单位", "英文名称", "类型编号", "所属型号", "最大值", "最小值", "合理最大值",
|
|
|
+ "合理最小值", "统一编码", "短ID", "长ID", "风场编号", "实时配置编号", "集团测点编号", "具体名称", "系数"};
|
|
|
+ String heardName = "测风塔风功率AGC测点表";
|
|
|
+ //调用Excel导出工具类
|
|
|
+ ExcelExport.exportToPath(allpoints, arr, heardName, 6, "测风塔风功率AGC测点表");
|
|
|
}
|
|
|
|
|
|
private void createWpPoints(ProBasicPowerstation wp, List<ProEconTestingPoint> stpointls, List<ProBasicPowerstationPoint> allpoints) {
|
|
@@ -535,7 +713,7 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
private void createPjPoints(ProBasicPowerstation wp, List<ProEconTestingPoint> stpointls, List<ProBasicPowerstationPoint> allpoints) {
|
|
|
|
|
@@ -618,7 +796,7 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
|
|
|
}
|
|
|
|
|
|
-
|
|
|
+
|
|
|
|
|
|
private void createLnPoints(ProBasicPowerstation wp, List<ProEconTestingPoint> stpointls, List<ProBasicPowerstationPoint> allpoints) {
|
|
|
|
|
@@ -699,7 +877,7 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
|
|
|
po.setRealtimeId(String.valueOf(sb));
|
|
|
|
|
|
-
|
|
|
+
|
|
|
points.add(po);
|
|
|
}
|
|
|
allpoints.addAll(points);
|
|
@@ -724,14 +902,14 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
|
|
|
List<ProBasicEquipmentPoint> allpoints = new ArrayList<>();
|
|
|
|
|
|
- List<ProEconTestingPoint> fdls=proEconTestingPointService.list().stream().filter(i->i.getTypeId().equals("fj") || i.getTypeId().equals("fjjsfw")).collect(Collectors.toList());
|
|
|
+ List<ProEconTestingPoint> fdls=proEconTestingPointService.list().stream().filter(i->i.getTypeId().equals("fj") || i.getTypeId().equals(FJJSFW)).collect(Collectors.toList());
|
|
|
|
|
|
- List<ProEconTestingPoint> gfls=proEconTestingPointService.list().stream().filter(i->i.getTypeId().equals("gf") || i.getTypeId().equals("gfjsfw")).collect(Collectors.toList());
|
|
|
+ List<ProEconTestingPoint> gfls=proEconTestingPointService.list().stream().filter(i->i.getTypeId().equals("gf") || i.getTypeId().equals(GFJSFW)).collect(Collectors.toList());
|
|
|
|
|
|
for (ProBasicPowerstation wp : CacheContext.wpls) {
|
|
|
|
|
|
List<ProEconTestingPoint> ls=null;
|
|
|
- if(wp.getId().indexOf("FDC")>=0)
|
|
|
+ if(wp.getId().contains("FDC"))
|
|
|
{
|
|
|
ls=fdls;
|
|
|
|
|
@@ -752,17 +930,17 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
|
|
|
|
|
|
ProEconTestingPoint stp = ls.get(i);
|
|
|
- if(!stp.getTypeId().contains("jsfw") && !stp.getModel().equals(wt.getModelId()))
|
|
|
- {
|
|
|
- continue;
|
|
|
- }
|
|
|
+// if(!stp.getTypeId().contains("jsfw") && !stp.getModel().equals(wt.getModelId()))
|
|
|
+// {
|
|
|
+// continue;
|
|
|
+// }
|
|
|
StringBuilder sb = new StringBuilder();
|
|
|
// sb.append(wp.getPhoto());
|
|
|
|
|
|
String temp = wp.getId().substring(0, wp.getId().lastIndexOf("_"));
|
|
|
temp = temp.substring(0, temp.lastIndexOf("_"));
|
|
|
temp = temp.substring(temp.lastIndexOf("_")+1);
|
|
|
- if(wp.getId().indexOf("FDC")>=0)
|
|
|
+ if(wp.getId().contains("FDC"))
|
|
|
{
|
|
|
sb.append(wp.getCompanyId().substring(0,wp.getCompanyId().lastIndexOf("_"))).append("_").append(temp).append("_F_");
|
|
|
}else
|