puzhibing
2025-05-06 4e87f5f570a84621734035217f08882f52809c48
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
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
 * @Date 2025/3/7 17:18
 */
@Repository
public interface UPExgMsgTakeEwayBillAckDao extends ElasticsearchRepository<UPExgMsgTakeEwayBillAck, String> {
    
    
    UPExgMsgTakeEwayBillAck findByVehicleNo(String vehicleNo);
    
    
    /**
     * 查询大于给定时间的所有数据
     *
     * @param createTime
     * @return
     */
    List<UPExgMsgTakeEwayBillAck> findByCreateTimeIsAfter(Long createTime);
}