Interface SysEmployeeQueryService
- All Known Implementing Classes:
SysEmployeeQueryFeignService
public interface SysEmployeeQueryService
员工查询服务接口
支持本地实现(core模块)和Feign远程调用(app作为依赖包)
-
Method Summary
Modifier and TypeMethodDescriptiongetByUserId(UUID userId) 根据用户ID查询员工getByUsername(String username) 根据用户名查询员工根据员工ID列表批量查询listByMobiles(Set<String> mobiles) 根据手机号列表批量查询员工listByUserIds(Set<UUID> userIds) 根据用户ID列表批量查询员工
-
Method Details
-
getByUsername
根据用户名查询员工 -
getByUserId
根据用户ID查询员工 -
listByUserIds
根据用户ID列表批量查询员工 -
listByMobiles
根据手机号列表批量查询员工 -
listByIds
根据员工ID列表批量查询
-