1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
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);
}