Commit 14eee911ebf3ee48a25dcf71baa30fc2761cbcec

Authored by 648540858
Committed by GitHub
2 parents ff1e9f79 c27e345e

Merge pull request #948 from DavidSche/wvp-28181-2.0

修复多级级联平台平台时,上级平台无法获取设备录像列表问题。问题详见  https://github.com/648540858/wvp-G…
src/main/java/com/genersoft/iot/vmp/gb28181/transmit/cmd/impl/SIPCommanderFroPlatform.java
... ... @@ -731,7 +731,7 @@ public class SIPCommanderFroPlatform implements ISIPCommanderForPlatform {
731 731 .append("<Response>\r\n")
732 732 .append("<CmdType>RecordInfo</CmdType>\r\n")
733 733 .append("<SN>" +recordInfo.getSn() + "</SN>\r\n")
734   - .append("<DeviceID>" + recordInfo.getDeviceId() + "</DeviceID>\r\n")
  734 + .append("<DeviceID>" + recordInfo.getChannelId() + "</DeviceID>\r\n")
735 735 .append("<SumNum>" + recordInfo.getSumNum() + "</SumNum>\r\n");
736 736 if (recordInfo.getRecordList() == null ) {
737 737 recordXml.append("<RecordList Num=\"0\">\r\n");
... ...