1
13693261870
2022-09-16 762f2fb45db004618ba099aa3c0bd89dba1eb843
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
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);
 
 
 
 
}