ruoyi-service/ruoyi-account/src/main/java/com/ruoyi/account/controller/TAppUserAddressController.java
@@ -125,7 +125,9 @@ @ApiOperation(tags = {"小程序-用户地址"},value = "查询用户地址详情") @GetMapping(value = "/getDetailById") public R<TAppUserAddress> getDetailById(@RequestParam(value = "id")Long id) { return R.ok(appUserAddressService.getById(id)); TAppUserAddress byId = appUserAddressService.getById(id); byId.setUid(byId.getId().toString()); return R.ok(byId); } /**