Browse Source

移除图片坐标点格式

master
lizhongkang@qniao.cn 3 years ago
parent
commit
3a826d0132
1 changed files with 1 additions and 1 deletions
  1. 2
      ai-root-cloud-statistics/src/main/java/com/qniao/rootcloudstatistics/RootCloudIotDataFormatterJob.java

2
ai-root-cloud-statistics/src/main/java/com/qniao/rootcloudstatistics/RootCloudIotDataFormatterJob.java

@ -216,7 +216,7 @@ public class RootCloudIotDataFormatterJob {
statement2.setLong(2, a.getAlarmId());
statement2.setString(3, a.getPicUrl());
statement2.setString(4, a.getThumbnail());
statement2.setString(5, StrUtil.isBlank(a.getEvents()) ? null : a.getEvents().replace("[[", "").replace("]]", ""));
statement2.setString(5, StrUtil.isBlank(a.getEvents()) ? null : a.getEvents());
statement2.setString(6, DateFormatUtils.format(a.getAlarmTime(), "yyyy-MM-dd HH:mm:ss"));
statement2.setString(7, DateFormatUtils.format(System.currentTimeMillis(), "yyyy-MM-dd HH:mm:ss"));
statement2.addBatch();

Loading…
Cancel
Save