chengf
2025-09-05 cf7052bd8f8516516d6f424b4df35c6329ee1d16
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
70
71
72
73
74
75
package com.java110.api.smo;
 
import com.java110.core.context.IPageData;
import org.springframework.http.ResponseEntity;
 
/**
 * 权限管理接口类
 */
public interface IPrivilegeServiceSMO {
 
    /**
     * 查询权限组
     * @param pd
     * @return
     */
    public ResponseEntity<String> listPrivilegeGroup(IPageData pd);
 
    /**
     * 查下权限
     * @param pd
     * @return
     */
    public ResponseEntity<String> loadListPrivilege(IPageData pd);
 
 
    /**
     * 保存权限组
     * @param pd
     * @return
     */
    public ResponseEntity<String> savePrivilegeGroup(IPageData pd);
 
    /**
     * 编辑权限组
     * @param pd
     * @return
     */
    public ResponseEntity<String> editPrivilegeGroup(IPageData pd);
 
    /**
     * 删除权限组
     * @param pd
     * @return
     */
    public ResponseEntity<String> deletePrivilegeGroup(IPageData pd);
 
    /**
     * 查询未被绑定的权限
     * @param pd
     * @return
     */
    public ResponseEntity<String> listNoAddPrivilege(IPageData pd);
 
    /**
     * 添加权限
     * @param pd
     * @return
     */
    public ResponseEntity<String> addPrivilegeToPrivilegeGroup(IPageData pd);
 
 
    /**
     * 删除权限
     * @param pd
     * @return
     */
    public ResponseEntity<String> deletePrivilegeFromPrivilegeGroup(IPageData pd);
 
    /**
     * 查询员工权限
     * @param pd
     * @return
     */
    public ResponseEntity<String> listStaffPrivileges(IPageData pd);
}