@ApiOperation("修改指定用户信息") @RequestMapping(value = "/update/{id}", method = RequestMethod.POST) @ResponseBody public CommonResult update(@PathVariable Long id, @RequestBody UmsAdmin admin) { int count = adminService.update(id, admin); if (count > 0) { return CommonResult.success(count); } return CommonResult.failed(); }
时间: 2024-03-12 13:44:06 浏览: 113
modespring:注释驱动的Spring 3.0 RESTful Web开发模式
根据你提供的接口代码,该接口的 URL 地址应该为:
```
POST /update/{id}
```
其中,`{id}` 是需要替换为具体的用户 ID。例如,如果要修改 ID 为 1 的用户信息,则 URL 为:
```
POST /update/1
```
需要注意的是,由于该接口使用了 POST 请求方法,因此在发送请求时需要使用 HTTP POST 方法,并且请求体中需要携带 JSON 格式的用户信息。
阅读全文