|
@@ -1,5 +1,6 @@
|
|
|
package com.ruoyi.system.domain;
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
|
import com.ruoyi.common.annotation.Excel;
|
|
|
import lombok.Data;
|
|
@@ -25,13 +26,13 @@ public class UserAddress implements Serializable {
|
|
|
@Excel(name = "关联用户id")
|
|
|
private Long userId;
|
|
|
|
|
|
-
|
|
|
- @Excel(name = "关联用户id")
|
|
|
- private Long userPhone;
|
|
|
+
|
|
|
+ @Excel(name = "经度")
|
|
|
+ private String longitude;
|
|
|
|
|
|
-
|
|
|
- @Excel(name = "用户地址信息")
|
|
|
- private String address;
|
|
|
+
|
|
|
+ @Excel(name = "纬度")
|
|
|
+ private String latitude;
|
|
|
|
|
|
|
|
|
private String delFlag;
|
|
@@ -47,4 +48,8 @@ public class UserAddress implements Serializable {
|
|
|
|
|
|
|
|
|
private Date updateTime;
|
|
|
+
|
|
|
+
|
|
|
+ @TableField(exist = false)
|
|
|
+ private String userPhone;
|
|
|
}
|