【升级】大数据下的优化

This commit is contained in:
俞宝山
2026-02-25 21:03:02 +08:00
parent e89a5e17cd
commit 783fe18619
22 changed files with 720 additions and 9 deletions

View File

@@ -177,4 +177,14 @@ public interface SaBaseLoginUserApi {
* @date 2022/3/10 16:14
**/
void doRegister(String account, String password);
/**
* 刷新用户数据范围预计算表
*
* @param userId 用户ID
* @param dataScopeList 用户的数据范围集合per-API维度
* @author yubaoshan
* @date 2026/2/12
*/
void refreshUserDataScope(String userId, List<SaBaseLoginUser.DataScope> dataScopeList);
}

View File

@@ -81,4 +81,12 @@ public interface SysOrgApi {
* @date 2025/01/10 14:45
**/
List<JSONObject> getOrgListByIdListWithoutException(List<String> orgIdList);
/**
* 清除组织缓存
*
* @author yubaoshan
* @date 2026/2/12
**/
void clearOrgCache();
}