Pu Zhibing
2025-04-09 b8a3a680f3e6720a8329bfaae571b09659aace52
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
package com.ruoyi.dataInterchange.dao;
 
import com.ruoyi.dataInterchange.model.UPRealvideoMsgEndAck;
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
import org.springframework.stereotype.Repository;
 
/**
 * @author zhibing.pu
 * @Date 2025/3/24 9:39
 */
@Repository
public interface UPRealvideoMsgEndAckDao extends ElasticsearchRepository<UPRealvideoMsgEndAck, String> {
    
    /**
     * 根据平台唯一id获取数据
     *
     * @param inferiorPlatformId
     * @return
     */
    UPRealvideoMsgEndAck findByInferiorPlatformIdAndVehicleNoAndCreateTimeAfter(Integer inferiorPlatformId,
                                                                                String vehicleNo, Long createTime);
}