From e28f4db774879138d947b32f7e9f1ec8e5e56077 Mon Sep 17 00:00:00 2001
From: Administrator <15274802129@163.com>
Date: Fri, 12 Jun 2026 15:00:03 +0800
Subject: [PATCH] feat(mall): 优化用户注册登录及订单管理功能

---
 src/main/java/cc/mrbird/febs/mall/vo/AddressInfoVo.java |   36 +++++++++++++++++++-----------------
 1 files changed, 19 insertions(+), 17 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/mall/vo/AddressInfoVo.java b/src/main/java/cc/mrbird/febs/mall/vo/AddressInfoVo.java
index 8af6e59..6894a15 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/AddressInfoVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/AddressInfoVo.java
@@ -13,22 +13,32 @@
 public class AddressInfoVo {
 
     @ApiModelProperty(value = "id")
-    private String id;
+    private Long id;
 
-    @ApiModelProperty(value = "姓名")
+    @ApiModelProperty(value = "Last name")
     private String name;
 
-    @ApiModelProperty(value = "手机号")
-    private String phone;
+    @ApiModelProperty(value = "First name")
+    private String firstName;
 
-    @ApiModelProperty(value = "地区")
-    private String area;
 
-    @ApiModelProperty(value = "地址")
+
+    @ApiModelProperty(value = "Address1")
     private String address;
 
-    @ApiModelProperty(value = "是否默认地址 1-是 2-否")
-    private Integer isDefault;
+    @ApiModelProperty(value = "Address2")
+    private String area;
+    @ApiModelProperty(value = "Postcode")
+    private String postcode;
+
+    @ApiModelProperty(value = "Phone Number")
+    private String phone;
+    @ApiModelProperty(value = "City")
+    private String city;
+    @ApiModelProperty(value = "State / Province")
+    private String province;
+    @ApiModelProperty(value = "Country/Region")
+    private String country;
 
     /**
      * 经度
@@ -41,12 +51,4 @@
      */
     @ApiModelProperty(value = "纬度")
     private String latitude;
-    //省
-
-    @ApiModelProperty(value = "省")
-    private String province;
-    //市
-
-    @ApiModelProperty(value = "市")
-    private String city;
 }

--
Gitblit v1.9.1