【底座】完善SysOrgApi和BizOrgApi

This commit is contained in:
xuyuxiang
2026-03-15 00:11:55 +08:00
parent a4b9ca70c4
commit 4204fa248e
6 changed files with 18 additions and 10 deletions

View File

@@ -32,7 +32,7 @@ public interface BizOrgApi {
* @author yubaoshan
* @date 2024/11/1 18:27:51
**/
List<JSONObject> orgTreeSelector(String parentId);
List<JSONObject> orgTreeSelector(String parentId, String searchKey);
/**
* 获取组织列表选择器
@@ -40,5 +40,5 @@ public interface BizOrgApi {
* @author yubaoshan
* @date 2024/11/1 18:27:51
**/
Page<JSONObject> orgListSelector(String parentId);
Page<JSONObject> orgListSelector(String parentId, String searchKey);
}