zhuguifei
2026-03-10 58402bd5e762361363a0f7d7907153c77dbb819f
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
package com.shlanbao.tzsc.pms.sys.user.service;
 
import java.util.List;
 
import com.shlanbao.tzsc.base.mapping.SysModelPermis;
import com.shlanbao.tzsc.pms.sys.user.beans.UserBean;
 
/**
 * 用户管角色模块接口
 * @author Rengj
 * @create 2016年12月21日下午13:20:05
 */
public interface ModelPermisServiceI {
    
 
    /**
     * 查询模块
     * @author Rengj
     * @create 2016年12月21日下午13:20:05
     * @param userId,roleId
     * @throws Exception
     */
    List<SysModelPermis> getDefaultSysModel(String userId,String roleId) throws Exception;
    /**
     * 添加模块
     * @author Rengj
     * @create 2016年12月21日下午13:20:05
     * @param userId,roleId
     * @throws Exception
     */
    void insertDefaultSysModel(SysModelPermis smp) throws Exception;
    
    /**
     * 查询模块
     * @author Rengj
     * @create 2016年12月21日下午13:20:05
     * @param userId,roleId
     * @throws Exception
     */
    List<SysModelPermis> getSysModel(String userId,String roleId,String fixCode) throws Exception;
    
    /**
     * 删除模块
     * @author Rengj
     * @create 2016年12月21日下午13:20:05
     * @param userId,roleId
     * @throws Exception
     */
    void deleteSysModel(String Id) throws Exception;
    
}