parent
25d02c1fdd
commit
c2babeab2f
@ -0,0 +1,116 @@ |
|||||||
|
package com.hai.model; |
||||||
|
|
||||||
|
import com.alibaba.fastjson.JSONObject; |
||||||
|
|
||||||
|
public class MapStoreModel { |
||||||
|
|
||||||
|
private Long id; |
||||||
|
private Integer sourceType; |
||||||
|
private String logo; |
||||||
|
private String latitude; |
||||||
|
private String longitude; |
||||||
|
private String iconPath; |
||||||
|
private Integer rotate; |
||||||
|
private Integer width; |
||||||
|
private Integer height; |
||||||
|
private JSONObject callout; |
||||||
|
private double alpha; |
||||||
|
|
||||||
|
private double distance; |
||||||
|
|
||||||
|
public double getDistance() { |
||||||
|
return distance; |
||||||
|
} |
||||||
|
|
||||||
|
public void setDistance(double distance) { |
||||||
|
this.distance = distance; |
||||||
|
} |
||||||
|
|
||||||
|
public Long getId() { |
||||||
|
return id; |
||||||
|
} |
||||||
|
|
||||||
|
public void setId(Long id) { |
||||||
|
this.id = id; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getSourceType() { |
||||||
|
return sourceType; |
||||||
|
} |
||||||
|
|
||||||
|
public void setSourceType(Integer sourceType) { |
||||||
|
this.sourceType = sourceType; |
||||||
|
} |
||||||
|
|
||||||
|
public String getLatitude() { |
||||||
|
return latitude; |
||||||
|
} |
||||||
|
|
||||||
|
public void setLatitude(String latitude) { |
||||||
|
this.latitude = latitude; |
||||||
|
} |
||||||
|
|
||||||
|
public String getLongitude() { |
||||||
|
return longitude; |
||||||
|
} |
||||||
|
|
||||||
|
public void setLongitude(String longitude) { |
||||||
|
this.longitude = longitude; |
||||||
|
} |
||||||
|
|
||||||
|
public String getIconPath() { |
||||||
|
return iconPath; |
||||||
|
} |
||||||
|
|
||||||
|
public void setIconPath(String iconPath) { |
||||||
|
this.iconPath = iconPath; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getRotate() { |
||||||
|
return rotate; |
||||||
|
} |
||||||
|
|
||||||
|
public void setRotate(Integer rotate) { |
||||||
|
this.rotate = rotate; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getWidth() { |
||||||
|
return width; |
||||||
|
} |
||||||
|
|
||||||
|
public void setWidth(Integer width) { |
||||||
|
this.width = width; |
||||||
|
} |
||||||
|
|
||||||
|
public Integer getHeight() { |
||||||
|
return height; |
||||||
|
} |
||||||
|
|
||||||
|
public void setHeight(Integer height) { |
||||||
|
this.height = height; |
||||||
|
} |
||||||
|
|
||||||
|
public JSONObject getCallout() { |
||||||
|
return callout; |
||||||
|
} |
||||||
|
|
||||||
|
public void setCallout(JSONObject callout) { |
||||||
|
this.callout = callout; |
||||||
|
} |
||||||
|
|
||||||
|
public double getAlpha() { |
||||||
|
return alpha; |
||||||
|
} |
||||||
|
|
||||||
|
public void setAlpha(double alpha) { |
||||||
|
this.alpha = alpha; |
||||||
|
} |
||||||
|
|
||||||
|
public String getLogo() { |
||||||
|
return logo; |
||||||
|
} |
||||||
|
|
||||||
|
public void setLogo(String logo) { |
||||||
|
this.logo = logo; |
||||||
|
} |
||||||
|
} |
Loading…
Reference in new issue