소스 검색

用户地址信息字段变更为经纬度

limingming 1 년 전
부모
커밋
55b99bca56

+ 0 - 8
ruoyi-common/src/main/java/com/ruoyi/common/core/domain/R.java

@@ -82,14 +82,6 @@ public class R<T> implements Serializable {
         return R.SUCCESS == ret.getCode();
     }
 
-    public boolean isOk() {
-        return this.getCode() == 200;
-    }
-
-    public boolean isNotOk() {
-        return this.getCode() != 200;
-    }
-
     public void setCodeMsg(CodeMsg codeMsg) {
         this.code = codeMsg.getCode();
         this.msg = codeMsg.getMsg();

+ 11 - 6
ruoyi-system/src/main/java/com/ruoyi/system/domain/UserAddress.java

@@ -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;
 
-    /** 关联用户id */
-    @Excel(name = "关联用户id")
-    private Long userPhone;
+    /** 经度 */
+    @Excel(name = "经度")
+    private String longitude;
 
-    /** 用户地址信息 */
-    @Excel(name = "用户地址信息")
-    private String address;
+    /** 纬度 */
+    @Excel(name = "纬度")
+    private String latitude;
 
     /** 删除标志(0代表存在 2代表删除) */
     private String delFlag;
@@ -47,4 +48,8 @@ public class UserAddress implements Serializable {
 
     /** 更新时间 */
     private Date updateTime;
+
+    /** 用户手机号 */
+    @TableField(exist = false)
+    private String userPhone;
 }