Commit 14495c5b by chenweisong

更新

parent 1269e244
......@@ -66,6 +66,17 @@ public class UserController {
return users;
}
@ApiOperation(value = "根据用户组id获取用户", hidden = true)
@ApiImplicitParams({
@ApiImplicitParam(name = "userId", value = "用户id", paramType = "query", required = true, dataType = "long")
})
@GetMapping(value = "/getUserOrgById")
public Object getUserOrgById(long userId) {
Map map = feignAuthService.getUserOrgById(userId);
return map;
}
/**
* tree structure
* <p>
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment