1、修改基站修改后同步不到rtcm缓存的问题

This commit is contained in:
Feng Yarnom 2024-07-30 19:11:27 +08:00
parent 4e9c411365
commit 75bc92066b

View File

@ -194,14 +194,12 @@ public class GnssDeviceController extends BasicController{
OpLogManager.OP_OBJ_DEVICE,
device.getDeviceid() + " create new");
}
if (num == 0) {
return HttpResult.failed();
} else {
// 更新组参数的关联个数
updateBasicGroupAssociatedNum(device,old_device);
rtcmClient.deviceParamChanged(device.getDeviceid(),
old_device==null?null:old_device.getParentid());
rtcmClient.deviceParamChanged(device.getDeviceid(), device.getParentid());
return HttpResult.ok();
}
}