| | |
| | | import com.ycl.platform.domain.vo.TMonitorVO; |
| | | import com.ycl.platform.domain.vo.screen.MonitorRateVO; |
| | | import com.ycl.platform.domain.vo.screen.MonitorTotalVO; |
| | | import org.apache.ibatis.annotations.Mapper; |
| | | import org.apache.ibatis.annotations.Param; |
| | | |
| | | import java.util.List; |
| | |
| | | * @author ruoyi |
| | | * @date 2024-03-04 |
| | | */ |
| | | @Mapper |
| | | public interface TMonitorMapper extends BaseMapper<TMonitor> |
| | | { |
| | | /** |
| | |
| | | /** |
| | | * 数据中心-资产管理 |
| | | * |
| | | * @param page |
| | | * @param query |
| | | */ |
| | | void assetManagement(IPage<TMonitorVO> page, @Param("query") DataCenterQuery query); |
| | | IPage assetManagement(IPage<TMonitorVO> page, @Param("query") DataCenterQuery query); |
| | | |
| | | |
| | | void deleteAll(); |
| | | |
| | | /** |
| | | * 批量修改设备厂商类型 |
| | | * |
| | | * @param list |
| | | * @return |
| | | */ |
| | | int batchUpdateDeviceType(@Param("numbers") List<String> list,@Param("deviceType") Integer deviceType); |
| | | |
| | | List<TMonitor> selectByNumbers(@Param("numbers")List<String> numbers); |
| | | } |