Compare commits
2 Commits
| Author | SHA1 | Date |
|---|---|---|
|
|
a0ae73e60e | |
|
|
ebd74dc485 |
|
|
@ -156,7 +156,7 @@ public class DeviceMessageSendTaskExecutorProvider implements TaskExecutorProvid
|
|||
|
||||
if (!CollectionUtils.isEmpty(inputs)) {
|
||||
for (FunctionParameter input : inputs) {
|
||||
input.setValue(ExpressionUtils.analytical(String.valueOf(input), ctx, "spel"));
|
||||
input.setValue(ExpressionUtils.analytical(String.valueOf(input.getValue()), ctx, "spel"));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
|
|
@ -52,7 +52,7 @@ public class DeviceAlarmTaskExecutorProvider implements TaskExecutorProvider {
|
|||
class DeviceAlarmTaskExecutor extends AbstractTaskExecutor {
|
||||
|
||||
List<String> default_columns = Arrays.asList(
|
||||
"timestamp", "deviceId", "this.header.deviceName deviceName"
|
||||
"timestamp", "deviceId", "this.headers.deviceName deviceName"
|
||||
);
|
||||
|
||||
private DeviceAlarmRule rule;
|
||||
|
|
|
|||
Loading…
Reference in New Issue