Sfoglia il codice sorgente

//update

release_toaliyun_real
xhxu 4 anni fa
parent
commit
2397f0b516
3 ha cambiato i file con 7 aggiunte e 0 eliminazioni
  1. +4
    -0
      mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java
  2. +1
    -0
      mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java
  3. +2
    -0
      mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java

+ 4
- 0
mallinkService/src/main/java/com/iformall/domain/po/WxMerchant.java Vedi File

@@ -342,6 +342,10 @@ public class WxMerchant extends TenantEntity {
@TableField(exist = false)
private Long floor;

@io.swagger.annotations.ApiModelProperty(value="地址",name="addr")
@TableField(exist = false)
private String addr;

@io.swagger.annotations.ApiModelProperty(value="经度",name="longitude")
@TableField(exist = false)
private Float longitude;


+ 1
- 0
mallinkService/src/main/java/com/iformall/domain/vo/WxMerchantVo.java Vedi File

@@ -126,6 +126,7 @@ public class WxMerchantVo extends TenantEntity {
this.actionDesc = m.getActionDesc();
this.linkLinePhone = m.getLinkLinePhone();
this.topTime = m.getTopTime();
this.addr = m.getAddr();
this.longitude = m.getLongitude();
this.latitude = m.getLatitude();
}


+ 2
- 0
mallinkService/src/main/java/com/iformall/service/impl/WxMerchantServiceImpl.java Vedi File

@@ -1250,6 +1250,7 @@ public class WxMerchantServiceImpl implements WxMerchantService {
if (null != m) {
TtMerchantPoi poi = poiMap.get(m.getId());
if(null != poi){
m.setAddr(poi.getAddress());
m.setLongitude(poi.getLongitude());
m.setLatitude(poi.getLatitude());
}
@@ -1316,6 +1317,7 @@ public class WxMerchantServiceImpl implements WxMerchantService {
if (hasShop && null != merchantShopVoList) {
vo.setShopVoList(merchantShopVoList.get(vo.getId()));
}
vo.setAddr(m.getAddr());
vo.setLongitude(m.getLongitude());
vo.setLatitude(m.getLatitude());
return vo;


Caricamento…
Annulla
Salva