Commit 1421b4743ca8c6f32984bfd9e213f8018035e7ae

Authored by 648540858
1 parent 2e5d9418

修复SQL错误 #802

src/main/java/com/genersoft/iot/vmp/storager/dao/DeviceMapper.java
@@ -272,7 +272,7 @@ public interface DeviceMapper { @@ -272,7 +272,7 @@ public interface DeviceMapper {
272 "asMessageChannel," + 272 "asMessageChannel," +
273 "geoCoordSys," + 273 "geoCoordSys," +
274 "treeType," + 274 "treeType," +
275 - "online" + 275 + "online," +
276 "mediaServerId" + 276 "mediaServerId" +
277 ") VALUES (" + 277 ") VALUES (" +
278 "#{deviceId}," + 278 "#{deviceId}," +
@@ -286,7 +286,7 @@ public interface DeviceMapper { @@ -286,7 +286,7 @@ public interface DeviceMapper {
286 "#{asMessageChannel}," + 286 "#{asMessageChannel}," +
287 "#{geoCoordSys}," + 287 "#{geoCoordSys}," +
288 "#{treeType}," + 288 "#{treeType}," +
289 - "#{online}" + 289 + "#{online}," +
290 "#{mediaServerId}" + 290 "#{mediaServerId}" +
291 ")") 291 ")")
292 void addCustomDevice(Device device); 292 void addCustomDevice(Device device);