1. 相差一分钟以上的消息不做处理
This commit is contained in:
parent
67ef07c021
commit
c115f0ef62
|
@ -169,7 +169,9 @@ public class ReceiveController {
|
|||
log.info("转换后的GCJ02经纬度:" + lon + "---" + lat);
|
||||
|
||||
EtOperatingArea area = etOperatingAreaService.selectEtOperatingAreaByAreaId(asDevice.getAreaId());
|
||||
if(ObjectUtil.isNotNull(area)){
|
||||
// 相差一分钟以上的消息不做处理
|
||||
boolean oneMinuteDifference = DateUtils.oneMinuteDifference(logEntry.getAt(), System.currentTimeMillis());
|
||||
if(ObjectUtil.isNotNull(area) && !oneMinuteDifference){
|
||||
/** 2. 判断是否在禁行区内 如果在, 根据配置‘禁行区内断电配置’进行断电 **/
|
||||
String isAdminUnlocking = asDevice.getIsAdminUnlocking();// 是否是管理员开锁:0-否;1-是
|
||||
boolean noRidingArea = isNoRidingArea(value, asDevice, area, isAdminUnlocking);
|
||||
|
|
|
@ -321,4 +321,17 @@ public class DateUtils extends org.apache.commons.lang3.time.DateUtils
|
|||
ZonedDateTime zonedDateTime = offsetDateTime.toZonedDateTime();
|
||||
return Date.from(zonedDateTime.toInstant());
|
||||
}
|
||||
|
||||
/**
|
||||
* 是否相差一分钟
|
||||
* * @param at 第一个时间戳,毫秒级
|
||||
* * @param currentTimeMillis 第二个时间戳,毫秒级
|
||||
* * @return 如果两个时间戳相差超过一分钟,则返回 true,否则返回 false
|
||||
*/
|
||||
public static boolean oneMinuteDifference(long at, long currentTimeMillis) {
|
||||
// 计算两个时间戳的差值,取绝对值
|
||||
long difference = Math.abs(currentTimeMillis - at);
|
||||
// 判断是否大于 60,000 毫秒(1 分钟)
|
||||
return difference > 60_000;
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue
Block a user