|
@@ -371,7 +371,7 @@ public class PredictController {
|
|
|
DateTime minBegin = middle, minEnd = DateUtil.offsetMinute(middle, 15);
|
|
|
while (minEnd.isBefore(end)) {
|
|
|
minEnd = DateUtil.offsetMinute(middle, i * 15);
|
|
|
- StationInfoMin2 day = task.calcStationPjfsHjwdMin2(minEnd, stationId);
|
|
|
+ StationInfoMin2 day = task.calcStationPjfsHjwdMin2(minEnd, stationId, true);
|
|
|
System.out.println(minBegin.toString() + "," + minEnd.toString());
|
|
|
i++;
|
|
|
minBegin = minEnd;
|
|
@@ -404,7 +404,7 @@ public class PredictController {
|
|
|
DateTime minBegin = middle, minEnd = DateUtil.offsetMinute(middle, 15);
|
|
|
while (minEnd.isBefore(end)) {
|
|
|
minEnd = DateUtil.offsetMinute(middle, i * 15);
|
|
|
- ProjectInfoMin2 min2 = task.calcProjectPjfsHjwdMin2(minEnd, projectId);
|
|
|
+ ProjectInfoMin2 min2 = task.calcProjectPjfsHjwdMin2(minEnd, projectId,true);
|
|
|
System.out.println(minBegin.toString() + "," + minEnd.toString());
|
|
|
i++;
|
|
|
minBegin = minEnd;
|
|
@@ -427,7 +427,7 @@ public class PredictController {
|
|
|
DateTime date = DateUtil.beginOfMinute(DateUtil.date());
|
|
|
int i = Math.floorDiv(date.minute(), 15) * 15;
|
|
|
date.setMinutes(i);
|
|
|
- StationInfoMin2 min2 = task.calcStationPjfsHjwdMin2(date, stationId);
|
|
|
+ StationInfoMin2 min2 = task.calcStationPjfsHjwdMin2(date, stationId,false);
|
|
|
if (stationId.equals("GJNY_SXGS_CSL_FDC_STA")) min2.setYxts(0L);
|
|
|
return min2;
|
|
|
}
|
|
@@ -436,7 +436,7 @@ public class PredictController {
|
|
|
DateTime date = DateUtil.beginOfMinute(DateUtil.date());
|
|
|
int i = Math.floorDiv(date.minute(), 15) * 15;
|
|
|
date.setMinutes(i);
|
|
|
- ProjectInfoMin2 min2 = task.calcProjectPjfsHjwdMin2(date, projectId);
|
|
|
+ ProjectInfoMin2 min2 = task.calcProjectPjfsHjwdMin2(date, projectId,false);
|
|
|
return min2;
|
|
|
}
|
|
|
|