|
|
@@ -203,6 +203,12 @@ public class Userspace implements Serializable {
|
|
|
@Column(name = "tags")
|
|
|
private String tags;
|
|
|
|
|
|
+ /**
|
|
|
+ * 企业注册地区
|
|
|
+ */
|
|
|
+ @Column(name = "area")
|
|
|
+ private String area;
|
|
|
+
|
|
|
/**
|
|
|
* 邀请人企业uu号
|
|
|
*/
|
|
|
@@ -501,6 +507,14 @@ public class Userspace implements Serializable {
|
|
|
this.tags = tags;
|
|
|
}
|
|
|
|
|
|
+ public String getArea() {
|
|
|
+ return area;
|
|
|
+ }
|
|
|
+
|
|
|
+ public void setArea(String area) {
|
|
|
+ this.area = area;
|
|
|
+ }
|
|
|
+
|
|
|
public Long getInviteSpaceUU() {
|
|
|
return inviteSpaceUU;
|
|
|
}
|
|
|
@@ -517,6 +531,8 @@ public class Userspace implements Serializable {
|
|
|
this.inviteUserUU = inviteUserUU;
|
|
|
}
|
|
|
|
|
|
+ @JsonIgnore
|
|
|
+ @JSONField(serialize = false)
|
|
|
public String getAccessSecret() {
|
|
|
return accessSecret;
|
|
|
}
|
|
|
@@ -544,6 +560,7 @@ public class Userspace implements Serializable {
|
|
|
userSpaceView.setTelephone(this.getTelephone());
|
|
|
userSpaceView.setProfession(this.getProfession());
|
|
|
userSpaceView.setTags(this.getTags());
|
|
|
+ userSpaceView.setArea(this.getArea());
|
|
|
return userSpaceView;
|
|
|
}
|
|
|
|