package com.ruoyi.dataInterchange.dao;
|
|
import com.ruoyi.dataInterchange.model.UPRealvideoMsgStartupAck;
|
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/24 9:16
|
*/
|
@Repository
|
public interface UPRealvideoMsgStartupAckDao extends ElasticsearchRepository<UPRealvideoMsgStartupAck, String> {
|
|
|
/**
|
* 根据平台唯一id获取数据
|
*
|
* @param inferiorPlatformId
|
* @return
|
*/
|
UPRealvideoMsgStartupAck findByInferiorPlatformIdAndVehicleNoAndCreateTimeAfter(Integer inferiorPlatformId,
|
String vehicleNo, Long createTime);
|
|
|
}
|