获取HR信息

master
Yangwl 1 year ago
parent 274798eff7
commit 595fb72808

@ -23,4 +23,8 @@ public interface RemoteOpenService {
@GetMapping("/openInterface/GetOaNodeInfo/{requestid}")
public AjaxResult GetOaNodeInfo(@PathVariable("requestid") String requestId);
/**获取HR人员信息**/
@GetMapping("/openInterface/GetHrUserInfo")
public AjaxResult GetHrUserInfo(@PathVariable("dateTime") String dateTime);
}

@ -29,6 +29,11 @@ public class RemoteOpenFallbackFactory implements FallbackFactory<RemoteOpenServ
public AjaxResult GetOaNodeInfo(String requestid) {
return AjaxResult.error("获取流程失败"+throwable.getMessage());
}
@Override
public AjaxResult GetHrUserInfo(String dateTime) {
return AjaxResult.error("获取HR信息失败"+throwable.getMessage());
}
};
}
}

Loading…
Cancel
Save