package com.wgcloud.mapper; import com.wgcloud.entity.SystemInfo; import org.springframework.stereotype.Repository; import java.util.List; import java.util.Map; /** * @version v3.3 * @ClassName:SystemInfoDao.java * @author: http://www.wgstart.com * @date: 2021年1月16日 * @Description: 查看系统信息 * @Copyright: 2019-2021 wgcloud. All rights reserved. */ @Repository public interface SystemInfoMapper { public List selectAllByParams(Map map) throws Exception; public List selectByHostname(String hostname) throws Exception; public List selectByParams(Map params); public void insertList(List recordList) throws Exception; public void updateList(List recordList) throws Exception; public SystemInfo selectById(String id) throws Exception; public int updateById(SystemInfo SystemInfo) throws Exception; public int countByParams(Map params) throws Exception; public void save(SystemInfo SystemInfo) throws Exception; public int deleteById(String[] id) throws Exception; public void downByHostName(List recordList) throws Exception; public int deleteByAccHname(Map map) throws Exception; public List selectBytesTop3(Map params); }