修改了地图的Marker数据结构

This commit is contained in:
董宏宇
2020-01-16 16:14:38 +08:00
parent 1719f2cfe7
commit f6d68ae6b0
2 changed files with 6 additions and 7 deletions

View File

@@ -10,7 +10,7 @@ import java.io.Serializable;
public class MarkerActivitiesScope implements Serializable {
private String content;
private int isCheck;
private boolean isCheck;
public String getContent() {
if (TextUtils.isEmpty(content)) {
@@ -23,11 +23,11 @@ public class MarkerActivitiesScope implements Serializable {
this.content = content;
}
public int getIsCheck() {
public boolean getIsCheck() {
return isCheck;
}
public void setIsCheck(int isCheck) {
public void setIsCheck(boolean isCheck) {
this.isCheck = isCheck;
}

View File

@@ -10,8 +10,7 @@ import java.io.Serializable;
public class MarkerOnlineTag implements Serializable {
private String content;
private int isCheck;
private boolean isCheck;
public String getContent() {
if (TextUtils.isEmpty(content)) {
@@ -24,11 +23,11 @@ public class MarkerOnlineTag implements Serializable {
this.content = content;
}
public int getIsCheck() {
public boolean getIsCheck() {
return isCheck;
}
public void setIsCheck(int isCheck) {
public void setIsCheck(boolean isCheck) {
this.isCheck = isCheck;
}