修复新设备注册

pull/473/head
648540858 2022-05-12 10:24:08 +08:00
parent 715ecb1d64
commit 3cd1378d39
1 changed files with 1 additions and 3 deletions

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