修复新设备注册

This commit is contained in:
648540858 2022-05-12 10:24:08 +08:00
parent d91b58de0a
commit cf933d7d5e

View File

@ -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);