删除了"未知"默认数据

This commit is contained in:
董宏宇
2020-02-04 19:22:08 +08:00
parent f2cfa41269
commit 80d12b0376
8 changed files with 8 additions and 8 deletions

View File

@@ -14,7 +14,7 @@ public class MarkerActivitiesScope implements Serializable {
public String getContent() {
if (TextUtils.isEmpty(content)) {
return "未知";
return "";
}
return content;
}

View File

@@ -66,7 +66,7 @@ public class MarkerDynamicData implements Serializable {
public String getMediaName() {
if (TextUtils.isEmpty(mediaName)) {
return "未知";
return "";
}
return mediaName;
}

View File

@@ -24,7 +24,7 @@ public class MarkerExploreWay implements Serializable {
public String getAddr() {
if (TextUtils.isEmpty(addr)) {
return "未知";
return "";
}
return addr;
}

View File

@@ -40,7 +40,7 @@ public class MarkerLocation implements Serializable {
public String getAddress() {
if (TextUtils.isEmpty(address)) {
return "未知";
return "";
}
return address;
}

View File

@@ -14,7 +14,7 @@ public class MarkerOnlineTag implements Serializable {
public String getContent() {
if (TextUtils.isEmpty(content)) {
return "未知";
return "";
}
return content;
}

View File

@@ -68,7 +68,7 @@ public class MarkerShareMusic implements Serializable {
public String getMediaName() {
if (TextUtils.isEmpty(mediaName)) {
return "未知";
return "";
}
return mediaName;
}

View File

@@ -54,7 +54,7 @@ public class MarkerShowEntity {
public String getTextContent() {
if (TextUtils.isEmpty(textContent)) {
return "未知";
return "";
}
return textContent;
}

View File

@@ -32,7 +32,7 @@ public class MarkerUserInfo implements Serializable {
//1990
char ageChar = ageChars[2];
String ageString = "";
String ageString = "设置";
switch (ageChar) {
case '0':