| | |
| | | @Override |
| | | public boolean saveOrUpdateDevice(FwDeviceEntity fwDeviceEntity) { |
| | | if (fwDeviceEntity.getEffectiveRangeKm() == null || fwDeviceEntity.getEffectiveRangeKm().compareTo(BigDecimal.ZERO) == 0 ) { |
| | | fwDeviceEntity.setLatitude(null); |
| | | fwDeviceEntity.setLongitude(null); |
| | | fwDeviceEntity.setLatitude(""); |
| | | fwDeviceEntity.setLongitude(""); |
| | | } |
| | | return saveOrUpdate(fwDeviceEntity); |
| | | } |
| | | |
| | | @Override |
| | | public boolean updateTrackStatusByDeviceId(Long deviceId, Integer trackStatus) { |
| | | return baseMapper.updateTrackStatusByDeviceId(deviceId, trackStatus) > 0; |
| | | } |
| | | } |