648540858 пре 3 година
родитељ
комит
3cd1378d39

+ 1 - 3
src/main/java/com/genersoft/iot/vmp/service/impl/DeviceServiceImpl.java

@@ -75,9 +75,6 @@ public class DeviceServiceImpl implements IDeviceService {
             redisCatchStorage.clearCatchByDeviceId(device.getDeviceId());
 
         }
-        if (device.getCreateTime() == null) {
-            device.setCreateTime(now);
-        }
         if (device.getRegisterTime() == null) {
             device.setRegisterTime(now);
         }
@@ -88,6 +85,7 @@ public class DeviceServiceImpl implements IDeviceService {
 
         // 第一次上线
         if (device.getCreateTime() == null) {
+            device.setCreateTime(now);
             logger.info("[设备上线,首次注册]: {},查询设备信息以及通道信息", device.getDeviceId());
             commander.deviceInfoQuery(device);
             sync(device);