From b68ac80de1daf22142886af16d36479259106065 Mon Sep 17 00:00:00 2001
From: Pu Zhibing <393733352@qq.com>
Date: 星期一, 17 三月 2025 18:40:35 +0800
Subject: [PATCH] 新增加管理后台接口和修改809协议中的bug

---
 ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgReportDriverInfoAckDao.java |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgReportDriverInfoAckDao.java b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgReportDriverInfoAckDao.java
index 0885b51..bafa628 100644
--- a/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgReportDriverInfoAckDao.java
+++ b/ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgReportDriverInfoAckDao.java
@@ -4,6 +4,8 @@
 import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
 import org.springframework.stereotype.Repository;
 
+import java.util.List;
+
 /**
  * @author zhibing.pu
  * @Date 2025/3/7 17:12
@@ -19,4 +21,13 @@
 	 * @return
 	 */
 	UPExgMsgReportDriverInfoAck findByVehicleNo(String vehicleNo);
+	
+	
+	/**
+	 * 查询等于或者大于给定时间的数据
+	 *
+	 * @param createTime
+	 * @return
+	 */
+	List<UPExgMsgReportDriverInfoAck> findByCreateTimeIsAfter(Long createTime);
 }

--
Gitblit v1.7.1