|
@@ -1,5 +1,6 @@
|
|
package com.ruoyi.system.domain;
|
|
package com.ruoyi.system.domain;
|
|
|
|
|
|
|
|
+import com.baomidou.mybatisplus.annotation.TableField;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.baomidou.mybatisplus.annotation.TableName;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import com.ruoyi.common.annotation.Excel;
|
|
import lombok.Data;
|
|
import lombok.Data;
|
|
@@ -25,13 +26,13 @@ public class UserAddress implements Serializable {
|
|
@Excel(name = "关联用户id")
|
|
@Excel(name = "关联用户id")
|
|
private Long userId;
|
|
private Long userId;
|
|
|
|
|
|
- /** 关联用户id */
|
|
|
|
- @Excel(name = "关联用户id")
|
|
|
|
- private Long userPhone;
|
|
|
|
|
|
+ /** 经度 */
|
|
|
|
+ @Excel(name = "经度")
|
|
|
|
+ private String longitude;
|
|
|
|
|
|
- /** 用户地址信息 */
|
|
|
|
- @Excel(name = "用户地址信息")
|
|
|
|
- private String address;
|
|
|
|
|
|
+ /** 纬度 */
|
|
|
|
+ @Excel(name = "纬度")
|
|
|
|
+ private String latitude;
|
|
|
|
|
|
/** 删除标志(0代表存在 2代表删除) */
|
|
/** 删除标志(0代表存在 2代表删除) */
|
|
private String delFlag;
|
|
private String delFlag;
|
|
@@ -47,4 +48,8 @@ public class UserAddress implements Serializable {
|
|
|
|
|
|
/** 更新时间 */
|
|
/** 更新时间 */
|
|
private Date updateTime;
|
|
private Date updateTime;
|
|
|
|
+
|
|
|
|
+ /** 用户手机号 */
|
|
|
|
+ @TableField(exist = false)
|
|
|
|
+ private String userPhone;
|
|
}
|
|
}
|