package com.landtool.lanbase.modules.sys.dao; import java.util.List; import java.util.Map; import com.landtool.lanbase.modules.sys.entity.SysSysteminfo; import com.landtool.lanbase.modules.sys.entity.SysUserApplist; import com.landtool.lanbase.modules.sys.dao.BaseDao; import org.apache.ibatis.annotations.Mapper; @Mapper public interface SysSysteminfoDao extends BaseDao { List findList(); List queryListByUserId(Long userId); SysSysteminfo getInfoById(Long appId); void addUserList(SysUserApplist OrgUserApplist); void deleteUserList(Long appid); List queryListAll(); int querySysteminfoWithSEQ(); List queryTopList(Map map); List queryTopUserList(Map map); List getSysListByUserId(Long userId); List queryAllList(Map map); void updateRorder(SysSysteminfo info); int queryMaxOrderid(); List getSysListIgnoredUserId(Map map); int querySysListIgnoredUserIdTotal(Map map); List queryAppByUrl(String appurl); int queryNavigAtionShowCount(Integer appid); int isAdmitSysByUserid(Map map); }