fix:同步利元亨用户岗位数据

This commit is contained in:
2026-01-28 20:31:05 +08:00
parent 5d7081e7ad
commit 38048f94e0
8 changed files with 114 additions and 8 deletions

View File

@@ -16,6 +16,7 @@ import org.springframework.cloud.openfeign.FeignClient;
import org.springframework.web.bind.annotation.*;
import java.util.List;
import java.util.Set;
@FeignClient(contextId = "honeycomUserServiceFeign", value = ServiceNameConstants.USER_SERVICE, configuration = FeignConfig.class)
public interface HoneycomUserServiceFeign {
@@ -121,4 +122,6 @@ public interface HoneycomUserServiceFeign {
@PostMapping("/user/tenant/getUserByHrEmpId")
R<SysUserEntity> getUserByHrEmpId(@RequestParam Integer hrEmpId, @RequestHeader(SecurityConstants.FROM) String from);
@GetMapping("/user/getUserListByUserNamesForSpdm")
R<Set<String>> getUserListByUserNamesForSpdm(@RequestParam("userNames") List<String> userNames);
}