package org.jeecg.modules.dnc.mapper; import com.baomidou.mybatisplus.core.mapper.BaseMapper; import org.apache.ibatis.annotations.Param; import org.jeecg.modules.dnc.entity.DeviceType; import java.util.List; public interface DeviceTypeMapper extends BaseMapper { /** * 检索NC查询对应的设备类 * @param attributionIds,attributionType,deviceManagementName,deviceManagementCode * @return */ List getDeviceTypeByAttribution(@Param("attributionIds") List attributionIds, @Param("attributionType") Integer attributionType, @Param("deviceManagementName") String deviceManagementName,@Param("deviceManagementCode") String deviceManagementCode); }