| | |
| | | |
| | | 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<DeviceInventory> { |
| | | |
| | | |
| | | InventoryDetailVo getReleaseDetail(@Param("id") Long id); |
| | | |
| | | List<DeviceClassVo> selectListByClassId(@Param("classId") Long classId); |
| | | } |