cuikaidong
2025-06-12 066063ed92fdd40da4dfe21770557f3adba3e1af
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
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);
 
}