Lius
2025-08-27 37fd5447c3b7bfdd3d1b31f8d68c6750471f178c
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.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<MdcDriveTypeParamConfig> {
 
    /**
     * 根据驱动,参数名称,查询驱动参数配置
     *
     * @param controlSystemType
     * @param englishName
     * @return
     */
    MdcDriveTypeParamConfig selectMdcDriveTypeParamConfigByEquipment(String controlSystemType, String englishName);
 
    /**
     * 根据驱动,参数名称,查询驱动参数是否重复
     *
     * @param controlSystemType
     * @param englishName
     * @return
     */
    boolean selectEnglishNameByEquipment(String controlSystemType, String englishName);
}