cuikaidong
2025-06-12 44e283b774bb1168d0c17dfe5070a1ca8e2274cd
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
34
35
36
37
38
39
package org.jeecg.modules.iot.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import org.jeecg.modules.iot.entity.Equipment;
import org.jeecg.modules.iot.entity.ParameterGroup;
 
import java.util.List;
 
/**
 * @Description: 参数组
 * @Author: cuikaidong
 * @Date: 2024-12-31
 * @Version: V1.0
 */
public interface IParameterGroupService extends IService<ParameterGroup> {
 
    /**
     * 根据服务器id查询参数组信息
     *
     * @param serverDeployId
     * @return
     */
    List<ParameterGroup> findParameterGroupByServerId(String serverDeployId);
 
    /**
     * 查询当前设备下参数组名称是否重复
     *
     * @return
     */
    Boolean findParameterGroupByName(ParameterGroup parameterGroup);
 
    /**
     * 查询当前设备下参数组编号是否重复
     *
     * @return
     */
    Boolean findParameterGroupByCode(ParameterGroup parameterGroup);
 
}