41 lines
1.3 KiB
Java
41 lines
1.3 KiB
Java
package com.muyu.common.system.remote;
|
|
|
|
import com.muyu.common.core.constant.SecurityConstants;
|
|
import com.muyu.common.core.constant.ServiceNameConstants;
|
|
import com.muyu.common.core.domain.Result;
|
|
import com.muyu.common.system.domain.SysUser;
|
|
import com.muyu.common.system.remote.factory.RemoteUserFallbackFactory;
|
|
import com.muyu.common.system.domain.LoginUser;
|
|
import org.springframework.cloud.openfeign.FeignClient;
|
|
import org.springframework.web.bind.annotation.*;
|
|
|
|
/**
|
|
* 用户服务
|
|
*
|
|
* @author muyu
|
|
*/
|
|
@FeignClient(contextId = "remoteUserService", value = ServiceNameConstants.SYSTEM_SERVICE, fallbackFactory = RemoteUserFallbackFactory.class)
|
|
public interface RemoteUserService {
|
|
/**
|
|
* 通过用户名查询用户信息
|
|
*
|
|
* @param username 用户名
|
|
* @param source 请求来源
|
|
*
|
|
* @return 结果
|
|
*/
|
|
@GetMapping("/user/info/{username}")
|
|
public Result<LoginUser> getUserInfo (@PathVariable("username") String username, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
|
|
|
/**
|
|
* 注册用户信息
|
|
*
|
|
* @param sysUser 用户信息
|
|
* @param source 请求来源
|
|
*
|
|
* @return 结果
|
|
*/
|
|
@PostMapping("/user/register")
|
|
public Result<Boolean> registerUserInfo (@RequestBody SysUser sysUser, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
|
}
|