Pu Zhibing
2025-03-17 b68ac80de1daf22142886af16d36479259106065
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgRegisterDao.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 16:10
@@ -18,4 +20,13 @@
    * @return
    */
   UPExgMsgRegister findByVehicleNo(String vehicleNo);
   /**
    * 查询添加时间大于等于给定时间的数据
    *
    * @param createTime
    * @return
    */
   List<UPExgMsgRegister> findByCreateTimeIsAfter(Long createTime);
}