Pu Zhibing
2025-05-30 66cc286b34b53db14fe8c4be2adff14438362eb7
ruoyi-service/ruoyi-dataInterchange/src/main/java/com/ruoyi/dataInterchange/dao/UPExgMsgTakeEwayBillAckDao.java
@@ -1,8 +1,12 @@
package com.ruoyi.dataInterchange.dao;
import com.ruoyi.dataInterchange.model.UPExgMsgTakeEwayBillAck;
import org.springframework.data.domain.PageRequest;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
import org.springframework.stereotype.Repository;
import java.awt.print.Pageable;
import java.util.List;
/**
 * @author zhibing.pu
@@ -13,4 +17,13 @@
   
   
   UPExgMsgTakeEwayBillAck findByVehicleNo(String vehicleNo);
   /**
    * 查询大于给定时间的所有数据
    *
    * @param createTime
    * @return
    */
   List<UPExgMsgTakeEwayBillAck> findByCreateTimeIsAfter(Long createTime);
}