package org.jeecg.modules.iot.service;
|
|
import com.baomidou.mybatisplus.extension.service.IService;
|
import org.jeecg.modules.iot.entity.InfluxdbDeploy;
|
|
import java.util.List;
|
import java.util.Set;
|
|
/**
|
* @Description: Influxdb配置
|
* @Author: cuikaidong
|
* @Date: 2024-12-10
|
* @Version: V1.0
|
*/
|
public interface IInfluxdbDeployService extends IService<InfluxdbDeploy> {
|
|
/**
|
* 根据服务器ids查询
|
*
|
* @param serverIds
|
* @return
|
*/
|
List<InfluxdbDeploy> findByServerIdsInfluxdbDeploy(Set<String> serverIds);
|
|
/**
|
* 根据服务器id查询influxdb配置信息
|
*
|
* @param id 服务器id
|
* @return
|
*/
|
InfluxdbDeploy findByServerIdInfluxdb(String id);
|
|
}
|