package com.landtool.lanbase.modules.sys.dao; import java.util.List; import java.util.Map; import com.landtool.lanbase.modules.sys.entity.SysSystemProblemTrack; import com.landtool.lanbase.modules.sys.entity.SysSysteminfo; import org.apache.ibatis.annotations.Mapper; @Mapper public interface MonitorDao { List queryUsers(List list); List queryUserops(Map map); List querySysSystemInfo(Map map); Integer insertSystemProblem(SysSystemProblemTrack sysSystemProblemTrack); List queryProblemSystem(Map map); List queryUserTrace(Map map); }