package com.ruoyi.dataInterchange.dao;
|
|
import com.ruoyi.dataInterchange.model.UPAuthorizeMsgStartup;
|
import org.springframework.data.elasticsearch.repository.ElasticsearchRepository;
|
import org.springframework.stereotype.Repository;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/3/21 11:01
|
*/
|
@Repository
|
public interface UPAuthorizeMsgStartupDao extends ElasticsearchRepository<UPAuthorizeMsgStartup, String> {
|
|
|
/**
|
* 根据下级平台唯一编号查询音视频时效口令
|
*
|
* @param inferiorPlatformId
|
* @return
|
*/
|
UPAuthorizeMsgStartup findByInferiorPlatformIdOrderByCreateTimeDesc(Integer inferiorPlatformId);
|
|
|
}
|