liujie
2025-05-28 1a4e7bbab3d15b36ebb4d7329ee31de62f092eb6
ruoyi-applet/src/main/java/com/ruoyi/web/controller/system/UserAddressController.java
@@ -39,7 +39,7 @@
    @ApiOperation(value = "获取用户地址",tags = {"获取用户地址"})
    @ApiOperation(value = "获取用户地址",tags = {"用户地址模块"})
    @GetMapping("/getAddressList")
    public R<?> getAddressList() {
        LoginUser loginUser = tokenService.getLoginUser();
@@ -50,7 +50,7 @@
    @ApiOperation(value = "添加修改用户地址",tags = {"添加修改用户地址"})
    @ApiOperation(value = "添加修改用户地址",tags = {"用户地址模块"})
    @PostMapping("/updateUserAddress")
    public R<?> updateUserAddress(@RequestBody @Valid TbAddress tbAddress) {
        LoginUser loginUser = tokenService.getLoginUser();
@@ -62,7 +62,7 @@
    @ApiOperation(value = "账号注销",tags = {"账号注销"})
    @ApiOperation(value = "删除地址",tags = {"用户地址模块"})
    @DeleteMapping("/deleteAddress/{id}")
    public R<?> deleteAddress(@PathVariable("id")String id) {
        TbAddress address = addressService.getById(id);