通讯录查询修改
parent
49490b3395
commit
1cf8c05ea8
|
|
@ -262,4 +262,11 @@ public class AddressBookController {
|
|||
return ResultJson.ok(service.removeById(id));
|
||||
}
|
||||
|
||||
|
||||
@ApiOperation(value = "查询详情")
|
||||
@GetMapping(value = "get/{id}")
|
||||
public ResultJson get(@PathVariable("id") Integer id) {
|
||||
return ResultJson.ok(service.getById(id));
|
||||
}
|
||||
|
||||
}
|
||||
|
|
|
|||
Loading…
Reference in New Issue