Browse Source

Merge branch 'master' of http://47.107.29.61:3000/feifan/mall-backend-admin into dev/2024/0620/update-admin-Y

Yangzw 8 months ago
parent
commit
aa82368394

+ 3 - 0
feifan-module-system/feifan-module-system-biz/src/main/java/cn/newfeifan/mall/module/system/controller/admin/user/vo/profile/UserProfileRespVO.java

@@ -43,6 +43,9 @@ public class UserProfileRespVO {
     @Schema(description = "创建时间", requiredMode = Schema.RequiredMode.REQUIRED, example = "时间戳格式")
     private LocalDateTime createTime;
 
+    @Schema(description = "地址")
+    private Long areaId;
+
     /**
      * 所属角色
      */

+ 3 - 0
feifan-module-system/feifan-module-system-biz/src/main/java/cn/newfeifan/mall/module/system/controller/admin/user/vo/profile/UserProfileUpdateReqVO.java

@@ -28,4 +28,7 @@ public class UserProfileUpdateReqVO {
     @Schema(description = "用户性别,参见 SexEnum 枚举类", example = "1")
     private Integer sex;
 
+    @Schema(description = "地址")
+    private Long areaId;
+
 }