Commit f4e5e0396245f249153f76382772d943acc1192a
1 parent
7b24d51d
修复表名错误 #904
Showing
1 changed file
with
1 additions
and
1 deletions
src/main/java/com/genersoft/iot/vmp/storager/dao/DeviceChannelMapper.java
| ... | ... | @@ -457,7 +457,7 @@ public interface DeviceChannelMapper { |
| 457 | 457 | // 设备主子码流逻辑END |
| 458 | 458 | @Select(value = {" <script>" + |
| 459 | 459 | "select * " + |
| 460 | - "from device_channel " + | |
| 460 | + "from wvp_device_channel " + | |
| 461 | 461 | "where device_id=#{deviceId}" + |
| 462 | 462 | " <if test='parentId != null '> and parent_id = #{parentId} </if>" + |
| 463 | 463 | " <if test='parentId == null '> and parent_id is null </if>" + | ... | ... |