|
@@ -57,11 +57,11 @@ public class StorePlatform extends BaseEntity {
|
|
|
|
|
|
|
|
@Comment("绑定平台中的门店Lat")
|
|
@Comment("绑定平台中的门店Lat")
|
|
|
@RColumn("platformshopgeolat")
|
|
@RColumn("platformshopgeolat")
|
|
|
- private double platformShopGeoLat;
|
|
|
|
|
|
|
+ private String platformShopGeoLat;
|
|
|
|
|
|
|
|
@Comment("绑定平台中的门店Lng")
|
|
@Comment("绑定平台中的门店Lng")
|
|
|
@RColumn("platformshopgeolng")
|
|
@RColumn("platformshopgeolng")
|
|
|
- private double platformShopGeoLng;
|
|
|
|
|
|
|
+ private String platformShopGeoLng;
|
|
|
|
|
|
|
|
@Comment("已填写的开通各平台需求的信息")
|
|
@Comment("已填写的开通各平台需求的信息")
|
|
|
private List<StorePlatformRequire> requireList = new ArrayList<>();
|
|
private List<StorePlatformRequire> requireList = new ArrayList<>();
|
|
@@ -162,19 +162,19 @@ public class StorePlatform extends BaseEntity {
|
|
|
this.platformShopPhone = platformShopPhone;
|
|
this.platformShopPhone = platformShopPhone;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public double getPlatformShopGeoLat() {
|
|
|
|
|
|
|
+ public String getPlatformShopGeoLat() {
|
|
|
return platformShopGeoLat;
|
|
return platformShopGeoLat;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPlatformShopGeoLat(double platformShopGeoLat) {
|
|
|
|
|
|
|
+ public void setPlatformShopGeoLat(String platformShopGeoLat) {
|
|
|
this.platformShopGeoLat = platformShopGeoLat;
|
|
this.platformShopGeoLat = platformShopGeoLat;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public double getPlatformShopGeoLng() {
|
|
|
|
|
|
|
+ public String getPlatformShopGeoLng() {
|
|
|
return platformShopGeoLng;
|
|
return platformShopGeoLng;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
- public void setPlatformShopGeoLng(double platformShopGeoLng) {
|
|
|
|
|
|
|
+ public void setPlatformShopGeoLng(String platformShopGeoLng) {
|
|
|
this.platformShopGeoLng = platformShopGeoLng;
|
|
this.platformShopGeoLng = platformShopGeoLng;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|