Commit 1421b4743ca8c6f32984bfd9e213f8018035e7ae
1 parent
2e5d9418
修复SQL错误 #802
Showing
1 changed file
with
2 additions
and
2 deletions
src/main/java/com/genersoft/iot/vmp/storager/dao/DeviceMapper.java
| ... | ... | @@ -272,7 +272,7 @@ public interface DeviceMapper { |
| 272 | 272 | "asMessageChannel," + |
| 273 | 273 | "geoCoordSys," + |
| 274 | 274 | "treeType," + |
| 275 | - "online" + | |
| 275 | + "online," + | |
| 276 | 276 | "mediaServerId" + |
| 277 | 277 | ") VALUES (" + |
| 278 | 278 | "#{deviceId}," + |
| ... | ... | @@ -286,7 +286,7 @@ public interface DeviceMapper { |
| 286 | 286 | "#{asMessageChannel}," + |
| 287 | 287 | "#{geoCoordSys}," + |
| 288 | 288 | "#{treeType}," + |
| 289 | - "#{online}" + | |
| 289 | + "#{online}," + | |
| 290 | 290 | "#{mediaServerId}" + |
| 291 | 291 | ")") |
| 292 | 292 | void addCustomDevice(Device device); | ... | ... |