package com.landtool.lanbase.modules.sys.service; import com.landtool.lanbase.modules.sys.entity.SysSystemProblemTrack; import com.landtool.lanbase.modules.sys.entity.SysSysteminfo; import java.util.List; import java.util.Map; public interface MonitorService { List queryUsers(List list); List queryUserops(Map map); List querySysSystemInfo(Map map); boolean insertSystemProblem(SysSystemProblemTrack sysSystemProblemTrack); List queryProblemSystem(Map map); List queryUserTrace(Map map); }