package com.landtool.lanbase.modules.sys.service; import com.landtool.lanbase.modules.sys.entity.SysSysteminfo; import com.landtool.lanbase.modules.sys.entity.SysUserApplist; import java.util.List; import java.util.Map; /** * @author lanbase * @Description: TODO(系统管理信息表) * @date 2018-01-16 09:04:50 */ public interface SysSysteminfoService { SysSysteminfo queryObject(Long appid); List queryList(Map map); int queryTotal(Map map); void save(SysSysteminfo systeminfo); void update(SysSysteminfo systeminfo); void delete(Long appid); void deleteBatch(Long[] appids); List findList(); List queryListByUserId(long userId); SysSysteminfo getInfoById(Long appId); void addUserList(Long userid,Long appid); 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); }