【新增】增加获取用户列表(排除当前用户)接口

This commit is contained in:
俞宝山
2024-08-26 00:40:35 +08:00
parent d1e6fd8575
commit 93111a8490
2 changed files with 17 additions and 0 deletions

View File

@@ -112,4 +112,12 @@ public interface SysUserApi {
* @date 2022/4/24 20:08
*/
Page<JSONObject> userSelector(String orgId, String searchKey);
/**
* 获取用户列表(排除当前用户)
*
* @author chengchuanyao
* @date 2024/7/19 9:54
*/
List<JSONObject> listUserWithoutCurrent();
}