| | |
| | | import org.springframework.cloud.openfeign.FeignClient;
|
| | | import org.springframework.web.bind.annotation.GetMapping;
|
| | | import org.springframework.web.bind.annotation.PathVariable;
|
| | | import org.springframework.web.bind.annotation.PostMapping;
|
| | | import org.springframework.web.bind.annotation.RequestBody;
|
| | | import org.springframework.web.bind.annotation.RequestHeader;
|
| | | import com.ruoyi.common.core.constant.SecurityConstants;
|
| | | import com.ruoyi.common.core.constant.ServiceNameConstants;
|
| | | import com.ruoyi.common.core.domain.R;
|
| | | import com.ruoyi.system.api.domain.SysUser;
|
| | | import com.ruoyi.system.api.factory.RemoteUserFallbackFactory;
|
| | | import com.ruoyi.system.api.model.LoginUser;
|
| | |
|
| | |
| | | * 通过用户名查询用户信息
|
| | | *
|
| | | * @param username 用户名
|
| | | * @param source 请求来源
|
| | | * @return 结果
|
| | | */
|
| | | @GetMapping(value = "/user/info/{username}")
|
| | | public R<LoginUser> getUserInfo(@PathVariable("username") String username);
|
| | | @GetMapping("/user/info/{username}")
|
| | | public R<LoginUser> getUserInfo(@PathVariable("username") String username, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
| | |
|
| | | /**
|
| | | * 注册用户信息
|
| | | *
|
| | | * @param sysUser 用户信息
|
| | | * @param source 请求来源
|
| | | * @return 结果
|
| | | */
|
| | | @PostMapping("/user/register")
|
| | | public R<Boolean> registerUserInfo(@RequestBody SysUser sysUser, @RequestHeader(SecurityConstants.FROM_SOURCE) String source);
|
| | | }
|