代码提交

master
徐杰盟 2024-05-16 21:47:36 +08:00
parent 67d2f66398
commit 3efd2cd51b
1 changed files with 1 additions and 1 deletions

View File

@ -282,7 +282,7 @@ public class AddressBookController {
if (Objects.isNull(byId)){ if (Objects.isNull(byId)){
return ResultJson.error("该用户不存在"); return ResultJson.error("该用户不存在");
} }
return ResultJson.ok(service.getById(byId.getAbId())); return ResultJson.ok(JSON.parseObject(JSON.toJSONString(service.getById(byId.getAbId())).replaceAll("null","")));
} }
} }