支持移动位置订阅通知的数据存储

This commit is contained in:
648540858
2024-05-11 17:48:47 +08:00
parent 622d72b3f0
commit e6a850891e
5 changed files with 43 additions and 5 deletions

View File

@@ -356,11 +356,14 @@ public class DeviceChannelServiceImpl implements IDeviceChannelService {
@Override
public void batchUpdateChannelGPS(List<DeviceChannel> channelList) {
channelMapper.batchUpdatePosition(channelList);
}
@Override
public void batchAddMobilePosition(List<MobilePosition> mobilePositions) {
deviceMobilePositionMapper.batchInsert(mobilePositions);
}
}