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
| package org.jeecg.modules.iot.service;
|
| import com.baomidou.mybatisplus.extension.service.IService;
| import org.jeecg.modules.iot.entity.MqttDeploy;
|
| import java.util.List;
| import java.util.Set;
|
| /**
| * @Description: Mqtt配置
| * @Author: cuikaidong
| * @Date: 2024-12-10
| * @Version: V1.0
| */
| public interface IMqttDeployService extends IService<MqttDeploy> {
| /**
| * 根据服务器ids查询
| *
| * @param serverIds
| * @return
| */
| List<MqttDeploy> findByServerIdsMqttDeploy(Set<String> serverIds);
|
| /**
| * 根据服务器id查询mqtt配置信息
| *
| * @param id 服务器id
| * @return
| */
| MqttDeploy findByServerIdMqttDeploy(String id);
| }
|
|