/** * Copyright (c) 2018-2028, Chill Zhuang 庄骞 (smallchill@163.com). *

* Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at *

* http://www.apache.org/licenses/LICENSE-2.0 *

* Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.springblade.system.user.feign; import org.springblade.core.launch.constant.AppConstant; import org.springblade.core.tool.api.R; import org.springblade.system.user.entity.UserInfo; import org.springblade.system.user.entity.UserOauth; import org.springframework.cloud.openfeign.FeignClient; import org.springframework.web.bind.annotation.GetMapping; import org.springframework.web.bind.annotation.PostMapping; import org.springframework.web.bind.annotation.RequestBody; import org.springframework.web.bind.annotation.RequestParam; /** * User Feign接口类 * * @author Chill */ @FeignClient( value = AppConstant.APPLICATION_USER_NAME, fallback = IUserClientFallback.class ) public interface IUserClient { String API_PREFIX = "/user"; /** * 获取用户信息 * * @param userId 用户id * @return */ @GetMapping(API_PREFIX + "/user-info-by-id") R userInfo(@RequestParam("userId") Long userId); /** * 获取用户信息 * * @param tenantId 租户ID * @param account 账号 * @param password 密码 * @return */ @GetMapping(API_PREFIX + "/user-info") R userInfo(@RequestParam("tenantId") String tenantId, @RequestParam("account") String account, @RequestParam("password") String password); /** * 获取第三方平台信息 * * @param userOauth 第三方授权用户信息 * @return UserInfo */ @PostMapping(API_PREFIX + "/user-auth-info") R userAuthInfo(@RequestBody UserOauth userOauth); }