package com.ruoyi.dataInterchange.dao;
|
|
import com.ruoyi.dataInterchange.model.UPPlaybackMsgControlAck;
|
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
import org.springframework.stereotype.Repository;
|
|
import java.time.LocalDateTime;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/24 10:13
|
*/
|
@Repository
|
public interface UPPlaybackMsgControlAckDao extends ElasticsearchRepository<UPPlaybackMsgControlAck, String> {
|
|
|
/**
|
* 获取远程录像回放控制应答
|
*
|
* @param inferiorPlatformId
|
* @param vehicleNo
|
* @param createTime
|
* @return
|
*/
|
UPPlaybackMsgControlAck findByInferiorPlatformIdAndVehicleNoAndCreateTimeAfter(Integer inferiorPlatformId,
|
String vehicleNo, LocalDateTime createTime);
|
}
|