修复设备缺失的数据
This commit is contained in:
parent
f6893cf95b
commit
715ecb1d64
@ -73,10 +73,18 @@ public class DeviceServiceImpl implements IDeviceService {
|
|||||||
if (deviceInRedis != null && deviceInDb == null) {
|
if (deviceInRedis != null && deviceInDb == null) {
|
||||||
// redis 存在脏数据
|
// redis 存在脏数据
|
||||||
redisCatchStorage.clearCatchByDeviceId(device.getDeviceId());
|
redisCatchStorage.clearCatchByDeviceId(device.getDeviceId());
|
||||||
|
|
||||||
|
}
|
||||||
|
if (device.getCreateTime() == null) {
|
||||||
device.setCreateTime(now);
|
device.setCreateTime(now);
|
||||||
}
|
}
|
||||||
device.setOnline(1);
|
if (device.getRegisterTime() == null) {
|
||||||
device.setRegisterTime(now);
|
device.setRegisterTime(now);
|
||||||
|
}
|
||||||
|
if(device.getUpdateTime() == null) {
|
||||||
|
device.setUpdateTime(now);
|
||||||
|
}
|
||||||
|
device.setOnline(1);
|
||||||
|
|
||||||
// 第一次上线
|
// 第一次上线
|
||||||
if (device.getCreateTime() == null) {
|
if (device.getCreateTime() == null) {
|
||||||
|
Loading…
Reference in New Issue
Block a user