|
@@ -897,9 +897,6 @@ 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());
|
|
@@ -1074,5 +1071,230 @@ public class InitialPointGoldenXkByEqService implements IinitialPoint {
|
|
|
}
|
|
|
|
|
|
|
|
|
+ public void initalJkfj() throws IOException {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ List<ProBasicEquipmentPoint> allpoints = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> gfls=proEconTestingPointService.list().stream().filter(i->i.getTypeId().equals("jkfjc") ).collect(Collectors.toList());
|
|
|
+
|
|
|
+ for (ProBasicPowerstation wp : CacheContext.wpls) {
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> ls=new ArrayList<>();
|
|
|
+ if(wp.getId().contains("GDC"))
|
|
|
+ {
|
|
|
+ ls=gfls;
|
|
|
+
|
|
|
+ }
|
|
|
+ List<ProBasicEquipment> wtls = CacheContext.wpwtmap.get(wp.getId());
|
|
|
+
|
|
|
+
|
|
|
+ if (!ls.isEmpty() ) {
|
|
|
+ for (ProBasicEquipment wt : wtls) {
|
|
|
+
|
|
|
+ List<ProBasicEquipmentPoint> points = new ArrayList<>();
|
|
|
+ for (int i = 0; i < ls.size(); i++) {
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ ProEconTestingPoint stp = ls.get(i);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ StringBuilder sb = new StringBuilder();
|
|
|
+
|
|
|
+
|
|
|
+ String temp = wp.getId().substring(0, wp.getId().lastIndexOf("_"));
|
|
|
+ temp = temp.substring(0, temp.lastIndexOf("_"));
|
|
|
+ temp = temp.substring(temp.lastIndexOf("_")+1);
|
|
|
+ if(wp.getId().contains("FDC"))
|
|
|
+ {
|
|
|
+ sb.append(wp.getCompanyId().substring(0,wp.getCompanyId().lastIndexOf("_"))).append("_").append(temp).append("_F_");
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ sb.append(wp.getCompanyId().substring(0,wp.getCompanyId().lastIndexOf("_"))).append("_").append(temp).append("_G_");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ temp = null;
|
|
|
+ temp = wt.getProjectId().substring(0, wt.getProjectId().lastIndexOf("_"));
|
|
|
+ sb.append("P").append(Integer.valueOf(temp.substring(temp.length() - 2))).append("_");
|
|
|
+ temp = wt.getLineId().substring(0, wt.getProjectId().lastIndexOf("_"));
|
|
|
+ sb.append("L").append(Integer.valueOf(temp.substring(temp.length() - 2))).append("_");
|
|
|
+
|
|
|
+ temp = wt.getId().substring(wt.getId().lastIndexOf("_")-4,wt.getId().lastIndexOf("_") );
|
|
|
+
|
|
|
+ if (temp.length() == 1) {
|
|
|
+ sb.append("000").append(temp).append("_");
|
|
|
+ } else if (temp.length() == 2) {
|
|
|
+ sb.append("00").append(temp).append("_");
|
|
|
+ }else if (temp.length() == 3) {
|
|
|
+ sb.append("0").append(temp).append("_");
|
|
|
+ } else {
|
|
|
+ sb.append(temp).append("_");
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+ if(ls.get(i).getUniformCode().indexOf("AI")>=0)
|
|
|
+ {
|
|
|
+ sb.append("AI");
|
|
|
+
|
|
|
+ }else if(ls.get(i).getUniformCode().indexOf("DI")>=0)
|
|
|
+ {
|
|
|
+ sb.append("DI");
|
|
|
+
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ sb.append("CI");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+ sb.append(stp.getNemCode());
|
|
|
+
|
|
|
+ StringBuilder sba = new StringBuilder();
|
|
|
+
|
|
|
+ temp = wp.getId().substring(0, wp.getId().lastIndexOf("_"));
|
|
|
+ temp = temp.substring(0, temp.lastIndexOf("_"));
|
|
|
+ temp = temp.substring(temp.lastIndexOf("_")+1);
|
|
|
+
|
|
|
+ String temp2=wp.getCompanyId().substring(0,wp.getCompanyId().lastIndexOf("_"));
|
|
|
+ temp2=temp2.substring(temp2.indexOf("_")+1);
|
|
|
+
|
|
|
+ String temp3=wp.getId().substring(0,wp.getId().lastIndexOf("_"));
|
|
|
+ temp3=temp3.substring(0,temp3.lastIndexOf("_"));
|
|
|
+ temp3=temp3.substring(temp3.lastIndexOf("_")+1);
|
|
|
+ if (wp.getId().indexOf("FDC")>=0) {
|
|
|
+ sba.append(temp2).append(temp3).append("FJ");
|
|
|
+ } else if (wp.getId().indexOf("GDC")>=0) {
|
|
|
+ sba.append(temp2).append(temp3).append("GF");
|
|
|
+ }
|
|
|
+
|
|
|
+ StringBuilder sbtable = new StringBuilder();
|
|
|
+
|
|
|
+
|
|
|
+ if (stp.getUniformCode().indexOf("AI")<0 && stp.getUniformCode().indexOf("DI")<0) {
|
|
|
+ sbtable.append(sba).append("JSFW.");
|
|
|
+ sbtable.append(sb);
|
|
|
+ } else {
|
|
|
+ sbtable.append(sba).append(".");
|
|
|
+ sbtable.append(sb);
|
|
|
+ }
|
|
|
+
|
|
|
+ ProBasicEquipmentPoint po = new ProBasicEquipmentPoint();
|
|
|
+ po.setId(StringUtils.getUUID());
|
|
|
+
|
|
|
+
|
|
|
+ if (stp.getUniformCode().indexOf("AI")<0 && stp.getUniformCode().indexOf("DI")<0)
|
|
|
+ {
|
|
|
+ po.setNemCode(String.valueOf(sbtable));
|
|
|
+ }else
|
|
|
+ {
|
|
|
+ po.setNemCode(String.valueOf(sbtable));
|
|
|
+ }
|
|
|
+
|
|
|
+ sb = new StringBuilder();
|
|
|
+ sb.append(wt.getName()).append(stp.getName());
|
|
|
+ po.setName(String.valueOf(sb));
|
|
|
+ po.setModel(wt.getModelId());
|
|
|
+ po.setModelId(wt.getModelId());
|
|
|
+ po.setWindturbineId(wt.getId());
|
|
|
+ po.setUniformCode(stp.getUniformCode());
|
|
|
+ po.setWindpowerstationId(wt.getWindpowerstationId());
|
|
|
+ po.setLogicalUnitId(ls.get(i).getLogicalUnitId());
|
|
|
+
|
|
|
+ if (stp.getUniformCode().indexOf("AI")<0 && stp.getUniformCode().indexOf("DI")<0) {
|
|
|
+ sb = new StringBuilder();
|
|
|
+
|
|
|
+ sb.append(wp.getId().substring(0,wp.getId().lastIndexOf("_")).replace("_", "")).append(".JSFW").append(sba);
|
|
|
+
|
|
|
+ po.setRealtimeId(String.valueOf(sb));
|
|
|
+ } else {
|
|
|
+ sb = new StringBuilder();
|
|
|
+
|
|
|
+ sb.append(wp.getId().substring(0,wp.getId().lastIndexOf("_")).replace("_", "")).append(".").append(sba);
|
|
|
+
|
|
|
+ po.setRealtimeId(String.valueOf(sb));
|
|
|
+ }
|
|
|
+
|
|
|
+ points.add(po);
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+ allpoints.addAll(points);
|
|
|
+ }
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ String[] arr = new String[]{"编号", "编码", "名称","别名", "型号", "单位", "英文名称", "类型编号", "所属型号", "最大值", "最小值", "合理最大值",
|
|
|
+ "合理最小值", "风机编号", "统一编码", "短ID", "长ID", "风场编号", "实时配置编号", "部件编号", "集团测点编号", "具体名称", "系数"};
|
|
|
+ String heardName = "风机测点表";
|
|
|
+
|
|
|
+ ExcelExport.exportToPath(allpoints, arr, heardName, 6, "风机健康测点");
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ public void initalJkfc() throws IOException {
|
|
|
+
|
|
|
+
|
|
|
+ List<ProEconTestingPoint> fdpointls = proEconTestingPointService.list().stream()
|
|
|
+ .filter(i->i.getTypeId().equals("jkfcc") ).collect(Collectors.toList());
|
|
|
+ List<ProEconTestingPoint> gfpointls = proEconTestingPointService.list().stream()
|
|
|
+ .filter(i->i.getTypeId().equals("jkfcc")).collect(Collectors.toList());
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ List<ProBasicPowerstationPoint> allpoints = new ArrayList<>();
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ for (ProBasicPowerstation wp : CacheContext.wpls) {
|
|
|
+ List<ProEconTestingPoint> ls=null;
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ if(wp.getId().contains("GDC"))
|
|
|
+ {
|
|
|
+ ls=gfpointls;
|
|
|
+
|
|
|
+ }
|
|
|
+ createWpPoints(wp, ls, allpoints);
|
|
|
+ createPjPoints(wp, ls, allpoints);
|
|
|
+ createLnPoints(wp, ls, allpoints);
|
|
|
+
|
|
|
+ }
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+
|
|
|
+ String[] arr = new String[]{"编号", "编码", "名称","实时库名称", "型号", "单位", "英文名称", "类型编号", "所属型号", "最大值", "最小值", "合理最大值",
|
|
|
+ "合理最小值", "统一编码", "短ID", "长ID", "风场编号", "实时配置编号", "集团测点编号", "具体名称", "系数"};
|
|
|
+ String heardName = "场站测点表";
|
|
|
+
|
|
|
+ ExcelExport.exportToPath(allpoints, arr, heardName, 6, "场站健康测点");
|
|
|
+ }
|
|
|
|
|
|
}
|