|
@@ -136,7 +136,7 @@ public class DataFittingService {
|
|
/** 添加标题 **/
|
|
/** 添加标题 **/
|
|
List<FixedVo> fxList = AnnotationTool.getFixedVoList(PowerFittingData.class);
|
|
List<FixedVo> fxList = AnnotationTool.getFixedVoList(PowerFittingData.class);
|
|
List<TableTitle> lt = fxList.stream().filter(f -> f.getRemark().equals("1"))
|
|
List<TableTitle> lt = fxList.stream().filter(f -> f.getRemark().equals("1"))
|
|
- .map(d -> new TableTitle(d.getName(), d.getValue())).collect(Collectors.toList());
|
|
|
|
|
|
+ .map(d -> new TableTitle(d.getName(), d.getDes())).collect(Collectors.toList());
|
|
|
|
|
|
/** 添加内容 **/
|
|
/** 添加内容 **/
|
|
List<PowerFittingData> list = new ArrayList<>();
|
|
List<PowerFittingData> list = new ArrayList<>();
|
|
@@ -246,7 +246,7 @@ public class DataFittingService {
|
|
private StringBuilder setTitle(){
|
|
private StringBuilder setTitle(){
|
|
val sb = new StringBuilder();
|
|
val sb = new StringBuilder();
|
|
val list = AnnotationTool.getFixedVoList(PowerFittingData.class);
|
|
val list = AnnotationTool.getFixedVoList(PowerFittingData.class);
|
|
- String columnName = list.stream().filter(f -> f.getRemark().equals("1")).map(FixedVo::getValue).collect(Collectors.joining(","));
|
|
|
|
|
|
+ String columnName = list.stream().filter(f -> f.getRemark().equals("1")).map(FixedVo::getDes).collect(Collectors.joining(","));
|
|
sb.append(columnName).append("\n");
|
|
sb.append(columnName).append("\n");
|
|
return sb;
|
|
return sb;
|
|
}
|
|
}
|
|
@@ -459,7 +459,7 @@ public class DataFittingService {
|
|
|
|
|
|
|
|
|
|
/**
|
|
/**
|
|
- * 统计并网时间 3-5m 5-10m 10-12m 12-25m(全功率) 不运行
|
|
|
|
|
|
+ * 统计并网时间 不运行 3-5m 5-10m 10-12m 12-25m(全功率)
|
|
* @param ids
|
|
* @param ids
|
|
* @return
|
|
* @return
|
|
*/
|
|
*/
|
|
@@ -472,7 +472,7 @@ public class DataFittingService {
|
|
|
|
|
|
list.forEach(item -> {
|
|
list.forEach(item -> {
|
|
Map<String, Object> map = new HashMap<>();
|
|
Map<String, Object> map = new HashMap<>();
|
|
- int[] time = new int[5];
|
|
|
|
|
|
+ int[] time = new int[5]; //不运行 3-5m 5-10m 10-12m 12-25m(全功率)
|
|
String[] split = item.getProcessid().split(",");//数据准备ID,获取文件
|
|
String[] split = item.getProcessid().split(",");//数据准备ID,获取文件
|
|
for (String id : split){
|
|
for (String id : split){
|
|
List<String> line = FileUtil.readFile(powerService.getById(id).getPath(), true);
|
|
List<String> line = FileUtil.readFile(powerService.getById(id).getPath(), true);
|
|
@@ -493,15 +493,15 @@ public class DataFittingService {
|
|
list.add(new PowerPointData(line.get(i).split(","), true));
|
|
list.add(new PowerPointData(line.get(i).split(","), true));
|
|
}
|
|
}
|
|
for (PowerPointData item : list){
|
|
for (PowerPointData item : list){
|
|
- if (item.getSpeed() >= 3.0 && item.getSpeed() < 5.0 && item.getMxzt() == 2)
|
|
|
|
|
|
+ if (item.getMxzt() != 2)
|
|
time[0] += interval;
|
|
time[0] += interval;
|
|
- if (item.getSpeed() >= 5.0 && item.getSpeed() < 10.0 && item.getMxzt() == 2)
|
|
|
|
|
|
+ if (item.getSpeed() >= 3.0 && item.getSpeed() < 5.0 && item.getMxzt() == 2)
|
|
time[1] += interval;
|
|
time[1] += interval;
|
|
- if (item.getSpeed() >= 10.0 && item.getSpeed() < 12.0 && item.getMxzt() == 2)
|
|
|
|
|
|
+ if (item.getSpeed() >= 5.0 && item.getSpeed() < 10.0 && item.getMxzt() == 2)
|
|
time[2] += interval;
|
|
time[2] += interval;
|
|
- if (item.getSpeed() >= 12.0 && item.getSpeed() <= 25.0 && item.getMxzt() == 2)
|
|
|
|
|
|
+ if (item.getSpeed() >= 10.0 && item.getSpeed() < 12.0 && item.getMxzt() == 2)
|
|
time[3] += interval;
|
|
time[3] += interval;
|
|
- if (item.getMxzt() != 2)
|
|
|
|
|
|
+ if (item.getSpeed() >= 12.0 && item.getSpeed() <= 25.0 && item.getMxzt() == 2)
|
|
time[4] += interval;
|
|
time[4] += interval;
|
|
}
|
|
}
|
|
}
|
|
}
|