package com.ruoyi.dataInterchange.dao;
|
|
import com.ruoyi.dataInterchange.model.UPPlaybackMsgStartupAck;
|
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/24 10:10
|
*/
|
@Repository
|
public interface UPPlaybackMsgStartupAckDao extends ElasticsearchRepository<UPPlaybackMsgStartupAck, String> {
|
|
/**
|
* 获取最新的远程录像请求回复消息
|
*
|
* @param inferiorPlatformId
|
* @param vehicleNo
|
* @param createTime
|
* @return
|
*/
|
UPPlaybackMsgStartupAck findByInferiorPlatformIdAndVehicleNoAndCreateTimeAfter(Integer inferiorPlatformId,
|
String vehicleNo, Long createTime);
|
}
|