package com.panzhihua.common.service.sangeshenbian;
|
|
import com.panzhihua.common.model.vos.R;
|
import com.panzhihua.common.model.vos.sangeshenbian.SystemUserVo;
|
import org.springframework.cloud.openfeign.FeignClient;
|
import org.springframework.web.bind.annotation.PostMapping;
|
import org.springframework.web.bind.annotation.RequestParam;
|
|
import java.util.List;
|
|
/**
|
* @author zhibing.pu
|
* @Date 2025/2/23 0:14
|
*/
|
@FeignClient(name = "huacheng-sangeshenbian")
|
public interface SystemUserService {
|
|
/**
|
*
|
* @param id
|
* 用户的ID
|
* @return 用户所有角色
|
*/
|
@PostMapping("/systemUser/getUserById")
|
R<SystemUserVo> getUserById(@RequestParam("id") String id);
|
}
|