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<SysSysteminfo> queryList(Map<String, Object> map);
|
|
int queryTotal(Map<String, Object> map);
|
|
void save(SysSysteminfo systeminfo);
|
|
void update(SysSysteminfo systeminfo);
|
|
void delete(Long appid);
|
|
void deleteBatch(Long[] appids);
|
|
List<SysSysteminfo> findList();
|
|
List<SysUserApplist> queryListByUserId(long userId);
|
|
SysSysteminfo getInfoById(Long appId);
|
|
void addUserList(Long userid,Long appid);
|
|
void deleteUserList(Long appid);
|
|
List<SysSysteminfo> queryListAll();
|
|
int querySysteminfoWithSEQ();
|
|
List<SysSysteminfo> queryTopList(Map<String, Object> map);
|
|
List<SysSysteminfo> queryTopUserList(Map<String, Object> map);
|
|
List<SysSysteminfo> getSysListByUserId(Long userId);
|
|
List<SysSysteminfo> queryAllList(Map<String, Object> map);
|
|
void updateRorder(SysSysteminfo info);
|
|
int queryMaxOrderid();
|
|
List<SysSysteminfo> getSysListIgnoredUserId(Map<String, Object> map);
|
|
int querySysListIgnoredUserIdTotal(Map<String, Object> map);
|
|
List<SysSysteminfo> queryAppByUrl(String appurl);
|
|
int queryNavigAtionShowCount(Integer appid);
|
|
int isAdmitSysByUserid(Map<String, Object> map);
|
|
|
|
|
}
|