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);
|
}
|