package org.jeecg.modules.iot.mdc.service; import com.baomidou.mybatisplus.extension.service.IService; import org.jeecg.modules.iot.mdc.entity.MdcDriveTypeParamConfig; /** * @Description: 驱动参数配置 * @Author: jeecg-boot * @Date: 2023-04-20 * @Version: V1.0 */ public interface IMdcDriveTypeParamConfigService extends IService { /** * 根据驱动,参数名称,查询驱动参数配置 * * @param controlSystemType * @param englishName * @return */ MdcDriveTypeParamConfig selectMdcDriveTypeParamConfigByEquipment(String controlSystemType, String englishName); /** * 根据驱动,参数名称,查询驱动参数是否重复 * * @param controlSystemType * @param englishName * @return */ boolean selectEnglishNameByEquipment(String controlSystemType, String englishName); }