master:档口榜返回数据调整;

pull/1121/head
liujiang 2025-09-17 09:42:35 +08:00
parent 4bd4c4ff62
commit 3e75eed94d
2 changed files with 3 additions and 0 deletions

View File

@ -30,6 +30,8 @@ public class PCStoreRecommendDTO {
private Boolean advert;
@ApiModelProperty(value = "联系电话")
private String contactPhone;
@ApiModelProperty(value = "联系电话备选")
private String contactBackPhone;
@ApiModelProperty(value = "微信账号")
private String wechatAccount;
@ApiModelProperty(value = "QQ账号")

View File

@ -368,6 +368,7 @@ public class WebsitePCServiceImpl implements IWebsitePCService {
.setStoreName(ObjectUtils.isNotEmpty(store) ? store.getStoreName() : "").setAdvert(Boolean.TRUE)
.setTags(storeTagMap.getOrDefault(x.getStoreId(), new ArrayList<>()))
.setContactPhone(ObjectUtils.isNotEmpty(store) ? store.getContactPhone() : "")
.setContactBackPhone(ObjectUtils.isNotEmpty(store) ? store.getContactBackPhone() : "")
.setWechatAccount(ObjectUtils.isNotEmpty(store) ? store.getWechatAccount() : "")
.setQqAccount(ObjectUtils.isNotEmpty(store) ? store.getQqAccount() : "")
.setStoreAddress(ObjectUtils.isNotEmpty(store) ? store.getStoreAddress() : "");