| | |
| | | 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<DeviceType> { |
| | | |
| | | /** |
| | | * 检索NC查询对应的设备类 |
| | | * @param attributionIds,attributionType,deviceManagementName,deviceManagementCode |
| | | * @return |
| | | */ |
| | | List<DeviceType> getDeviceTypeByAttribution(@Param("attributionIds") List<String> attributionIds, @Param("attributionType") Integer attributionType, |
| | | @Param("deviceManagementName") String deviceManagementName,@Param("deviceManagementCode") String deviceManagementCode); |
| | | } |