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 { /** * 根据服务器id查询参数组信息 * * @param serverDeployId * @return */ List findParameterGroupByServerId(String serverDeployId); /** * 查询当前设备下参数组名称是否重复 * * @return */ Boolean findParameterGroupByName(ParameterGroup parameterGroup); /** * 查询当前设备下参数组编号是否重复 * * @return */ Boolean findParameterGroupByCode(ParameterGroup parameterGroup); }