董宏宇
2020-10-23 20:22:52 +08:00
parent 5c3134f57d
commit 73896a9484
7 changed files with 182 additions and 25 deletions

View File

@@ -137,6 +137,15 @@ public class MarkerExploreWay implements Serializable {
return infoId;
}
public int getInfoIdInt() {
try {
return Integer.parseInt(infoId);
} catch (NumberFormatException e) {
e.printStackTrace();
return -1;
}
}
public void setInfoId(String infoId) {
this.infoId = infoId;
}