From ea2938522357f193ee82938129a8094c594f1fb1 Mon Sep 17 00:00:00 2001
From: xiaoyong931011 <15274802129@163.com>
Date: Mon, 17 Jul 2023 17:33:21 +0800
Subject: [PATCH] 用户登录获取用户的微信昵称和头像

---
 src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java |    9 +++++++++
 1 files changed, 9 insertions(+), 0 deletions(-)

diff --git a/src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java b/src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
index 41fa4ee..012f7be 100644
--- a/src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
+++ b/src/main/java/cc/mrbird/febs/mall/vo/OrderDetailVo.java
@@ -40,6 +40,12 @@
     @ApiModelProperty(value = "订单金额")
     private BigDecimal amount;
 
+    @ApiModelProperty(value = "送货上门经度")
+    private Double longitude;
+
+    @ApiModelProperty(value = "送货上门纬度")
+    private Double latitude;
+
     @ApiModelProperty(value = "收货人姓名")
     private String name;
 
@@ -67,6 +73,9 @@
     @ApiModelProperty(value = "运费")
     private BigDecimal carriage;
 
+    @ApiModelProperty(value = "备注")
+    private String remark;
+
     public Integer getPayMethodType() {
         if (this.payMethod == null) {
             return 0;

--
Gitblit v1.9.1