接口 SysEmployeeQueryService
- 所有已知实现类:
SysEmployeeQueryFeignService
public interface SysEmployeeQueryService
员工查询服务接口
支持本地实现(core模块)和Feign远程调用(app作为依赖包)
-
方法概要
修饰符和类型方法说明getByUserId(UUID userId) 根据用户ID查询员工getByUsername(String username) 根据用户名查询员工根据员工ID列表批量查询listByMobiles(Set<String> mobiles) 根据手机号列表批量查询员工listByUserIds(Set<UUID> userIds) 根据用户ID列表批量查询员工
-
方法详细资料
-
getByUsername
根据用户名查询员工 -
getByUserId
根据用户ID查询员工 -
listByUserIds
根据用户ID列表批量查询员工 -
listByMobiles
根据手机号列表批量查询员工 -
listByIds
根据员工ID列表批量查询
-