package com.by4cloud.platformx.device.mapper; import com.by4cloud.platformx.common.data.datascope.PlatformxBaseMapper; import com.by4cloud.platformx.device.entity.DeviceInventory; import com.by4cloud.platformx.device.entity.vo.DeviceClassVo; import com.by4cloud.platformx.device.entity.vo.InventoryDetailVo; import org.apache.ibatis.annotations.Mapper; import org.apache.ibatis.annotations.Param; import java.util.List; @Mapper public interface DeviceInventoryMapper extends PlatformxBaseMapper { InventoryDetailVo getReleaseDetail(@Param("id") Long id); List selectListByClassId(@Param("classId") Long classId); }