1. 调整
This commit is contained in:
parent
073305c702
commit
fe1f04a37a
|
@ -143,7 +143,7 @@ public interface IAsDeviceService extends IService<AsDevice>
|
|||
/**
|
||||
* 更新设备
|
||||
*
|
||||
* @param deviceIds 需要更新设备的设备主键集合
|
||||
* @param sn 需要更新设备的设备主键集合
|
||||
* @return 结果
|
||||
*/
|
||||
int refreshDeviceBySn(String sn);
|
||||
|
|
|
@ -2610,7 +2610,8 @@ public class AsDeviceServiceImpl extends ServiceImpl<AsDeviceMapper, AsDevice> i
|
|||
endTime = DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, order.getReturnTime());
|
||||
}
|
||||
String startTime = DateUtils.parseDateToStr(DateUtils.YYYY_MM_DD_HH_MM_SS, order.getUnlockTime());
|
||||
List<EtLocationLog> etLocationLogs = etLocationLogMapper.selectEtLocationLogListByCreateTime(order.getDeviceMac(), startTime, endTime);
|
||||
AsDevice device = asDeviceMapper.selectAsDeviceBySn(order.getSn());
|
||||
List<EtLocationLog> etLocationLogs = etLocationLogMapper.selectEtLocationLogListByCreateTime(device.getMac(), startTime, endTime);
|
||||
// 将etLocationLogs中的longitude和latitude 转换成 [[120.2534,27.1048],[120.2556,27.1051],[120.2569,27.1057]] 这样的格式
|
||||
List<double[]> coordinatesList = new ArrayList<>();
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user