1
hao
2025-05-20 8e24c6fea30d9b179375ee2893710cdec2443b13
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.system.router.service;
 
 
import com.app.base.data.ApiResponseResult;
import com.system.router.entity.SysRouter;
 
public interface SysRouterService {
 
    public ApiResponseResult add(SysRouter sysRouter) throws Exception;
    
    public ApiResponseResult edite(SysRouter sysRouter) throws Exception;
 
    public ApiResponseResult delete(Long id) throws Exception;
    
    public ApiResponseResult getlist(String rolecode,String rolename) throws Exception;
    
    public ApiResponseResult getRolesByUserId(long userId) throws Exception;
    
    public ApiResponseResult getTreeList() throws Exception;
 
 
    public ApiResponseResult getRouterTree(String rolecode) throws Exception;
}