Browse Source

通话时长没有上报的问题

develop
bin 4 years ago
parent
commit
40490cbc14
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/main/java/com/ssjl/zhaobiao/guizhou/controller/IotController.java

+ 1
- 1
src/main/java/com/ssjl/zhaobiao/guizhou/controller/IotController.java View File

@@ -325,7 +325,7 @@ public class IotController {
calls.setPhoneNumber(call.getPhoneNumber());
calls.setDateTime(call.getDateTime());
calls.setCallFlag(call.getCallFlag());
call.setDuration(call.getDuration());
calls.setDuration(call.getDuration());
byte[] res = httpUtil.send(imei, gzDeviceConfig.getPhone(), calls);
System.out.println(ByteUtil.bytesToHexString(res));
log.info(imei + ",call 电信返回:" + ByteUtil.bytesToHexString(res));


Loading…
Cancel
Save