完成主管员工绩效查询模块

This commit is contained in:
2025-07-12 17:08:26 +08:00
parent e1631895ee
commit dbf924d9e9
17 changed files with 845 additions and 205 deletions

View File

@ -20,6 +20,12 @@ public interface UserInfoMapper extends BaseMapper<UserInfo> {
List<Long> findPathToRoot(Long userId);
/**
* 查询当前用户的所有下级用户(包括间接)
*/
List<Long> findAllSubUser(Long userId);
}