|
@@ -33,7 +33,7 @@ public class CalculateTask {
|
|
|
private RemoteServiceBuilder remoteService;
|
|
|
|
|
|
|
|
|
- @Scheduled(cron = "0 06 15 * * ?")
|
|
|
+ @Scheduled(cron = "0 0 2 * * ?")
|
|
|
public void doTask() {
|
|
|
List<ProBasicEquipment> equipmentList = proBasicEquipmentService.getCacheList();
|
|
|
Map<String, ProBasicEquipmentPoint> sbztMap = proBasicEquipmentPointService.getEquipmentMapByUniformcode("SBZT");
|
|
@@ -68,10 +68,12 @@ public class CalculateTask {
|
|
|
TsDoubleData remove = datas8.remove(0);
|
|
|
long ts0 = remove != null ? remove.getTs() : starttime;
|
|
|
long ts1;
|
|
|
+ int doubleValue0 = remove != null ? (int) remove.getDoubleValue() : 7;
|
|
|
int doubleValue1;
|
|
|
for (TsDoubleData data : datas8) {
|
|
|
ts1 = data.getTs();
|
|
|
doubleValue1 = (int) data.getDoubleValue();
|
|
|
+ if (doubleValue1 == doubleValue0) continue;
|
|
|
|
|
|
|
|
|
if (doubleValue1 == 1) {
|
|
@@ -91,6 +93,8 @@ public class CalculateTask {
|
|
|
}
|
|
|
if (ts1 <= starttime) break;
|
|
|
ts0 = ts1;
|
|
|
+ doubleValue0 = doubleValue1;
|
|
|
+
|
|
|
}
|
|
|
}
|
|
|
|
|
@@ -101,10 +105,12 @@ public class CalculateTask {
|
|
|
TsDoubleData remove = datas14.remove(0);
|
|
|
long ts0 = remove != null ? remove.getTs() : starttime;
|
|
|
long ts1;
|
|
|
+ int doubleValue0 = remove != null ? (int) remove.getDoubleValue() : 7;
|
|
|
int doubleValue1;
|
|
|
for (TsDoubleData data : datas14) {
|
|
|
ts1 = data.getTs();
|
|
|
doubleValue1 = (int) data.getDoubleValue();
|
|
|
+ if (doubleValue1 == doubleValue0) continue;
|
|
|
|
|
|
|
|
|
if (doubleValue1 == 1) {
|
|
@@ -138,6 +144,7 @@ public class CalculateTask {
|
|
|
}
|
|
|
if (ts1 <= starttime) break;
|
|
|
ts0 = ts1;
|
|
|
+ doubleValue0 = doubleValue1;
|
|
|
}
|
|
|
}
|
|
|
}
|
|
@@ -156,7 +163,7 @@ public class CalculateTask {
|
|
|
}
|
|
|
|
|
|
|
|
|
-
|
|
|
+
|
|
|
public void creatStables() {
|
|
|
List<ProBasicEquipment> equipmentList = proBasicEquipmentService.getCacheList();
|
|
|
|