zenglf
2023-09-28 f84d9e69907cb678150eaa6393fd74cf042fcca4
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
package org.jeecg.modules.mdc.mapper;
 
import com.baomidou.mybatisplus.core.mapper.BaseMapper;
import org.apache.ibatis.annotations.Param;
import org.jeecg.modules.mdc.entity.MdcDriveTypeParamConfig;
 
import java.util.List;
 
/**
 * @Description: 驱动参数配置
 * @Author: jeecg-boot
 * @Date: 2023-04-20
 * @Version: V1.0
 */
public interface MdcDriveTypeParamConfigMapper extends BaseMapper<MdcDriveTypeParamConfig> {
 
    /**
     * 根据设备编码获取工作曲线参数
     */
    List<MdcDriveTypeParamConfig> findWorkCurveParamList(@Param("equipmentId") String equipmentId);
 
    /**
     * 获取控制系统类型下拉框选项
     */
    List<String> getDriveParamOptions();
 
}