poi图片服务端可配需求开发

This commit is contained in:
tongchenfei
2020-10-21 20:34:14 +08:00
parent b22e63c7c9
commit 8cb48df542
4 changed files with 146 additions and 53 deletions

View File

@@ -0,0 +1,64 @@
package com.mogo.module.common.marker;
/**
* poi信息封装
*
* @author tongchenfei
*/
public class PoiWrapper {
private int id;
private String poiType;
private int iconRes;
private String iconUrl;
private String title;
public PoiWrapper(){
}
public PoiWrapper(String poiType, int iconRes, String title) {
this.poiType = poiType;
this.iconRes = iconRes;
this.title = title;
}
public int getId() {
return id;
}
public void setId(int id) {
this.id = id;
}
public String getPoiType() {
return poiType;
}
public void setPoiType(String poiType) {
this.poiType = poiType;
}
public int getIconRes() {
return iconRes;
}
public void setIconRes(int iconRes) {
this.iconRes = iconRes;
}
public String getIconUrl() {
return iconUrl;
}
public void setIconUrl(String iconUrl) {
this.iconUrl = iconUrl;
}
public String getTitle() {
return title;
}
public void setTitle(String title) {
this.title = title;
}
}