yangys
2024-04-04 ed4a5236bab800094be4a8378f5098eebe3de6ac
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
package com.qianwen.smartman.modules.system.service;
 
import com.baomidou.mybatisplus.extension.service.IService;
import java.util.List;
import java.util.Map;
import com.qianwen.smartman.modules.system.entity.Dept;
import com.qianwen.smartman.modules.system.vo.DataScopeGrantVO;
import com.qianwen.smartman.modules.system.vo.DeptVO;
 
/* loaded from: blade-api.jar:BOOT-INF/classes/org/springblade/modules/system/service/IDataScopeManagerService.class */
public interface IDataScopeManagerService extends IService<Dept> {
    List<DeptVO> lazyList(String tenantId, Long parentId, Map<String, Object> param);
 
    List<DeptVO> tree(String tenantId);
 
    List<DeptVO> lazyTree(String tenantId, Long parentId);
 
    String getDeptIds(String tenantId, String deptNames);
 
    String getDeptIdsByFuzzy(String tenantId, String deptNames);
 
    List<String> getDeptNames(String deptIds);
 
    List<Dept> getDeptChild(Long deptId);
 
    boolean removeDept(String ids);
 
    boolean submit(Dept dept);
 
    List<DeptVO> search(String deptName, Long parentId);
 
    boolean grant(DataScopeGrantVO grantVO);
 
    List<String> grantSelect(String deptId);
}