Browse Source

版本修改

wangliang 2 years ago
parent
commit
854ad10ddc

+ 1 - 1
themis-mq/src/main/java/com/qmth/themis/mq/service/impl/MqLogicServiceImpl.java

@@ -714,7 +714,7 @@ public class MqLogicServiceImpl implements MqLogicService {
         Long recordId = Long.parseLong(mqDto.getObjId());
         Long updateTime = ExamRecordCacheUtil.getUpdateTime(recordId);
         if (Objects.isNull(updateTime) || (Objects.nonNull(updateTime) &&
-                mqDto.getTimestamp().longValue() > updateTime.longValue())) {
+                mqDto.getTimestamp().longValue() >= updateTime.longValue())) {
             examRecordService.examRecordDataSave(recordId);
             tIpRegionService.saveIpRegion(recordId);
         }