fix getBranchShopDetail 增加pointId

This commit is contained in:
shuo.wang
2025-01-16 15:15:12 +08:00
parent bdeeeda862
commit a5586fc90b
2 changed files with 5 additions and 0 deletions

View File

@@ -65,4 +65,8 @@ public class BranchShopDetailResponse {
@ApiModelProperty("门店状态:0.跟进中 1.已完成 2.已放弃") @ApiModelProperty("门店状态:0.跟进中 1.已完成 2.已放弃")
private Integer shopStatus; private Integer shopStatus;
@ApiModelProperty("铺位id")
private Long pointId;
} }

View File

@@ -305,6 +305,7 @@ public class ShopServiceImpl implements ShopService {
response.setRegionName(shopRegion.getName()); response.setRegionName(shopRegion.getName());
response.setWantRegionName(wantShopArea); response.setWantRegionName(wantShopArea);
response.setWantRegionParentId(hyOpenAreaInfoDO.getParentId()); response.setWantRegionParentId(hyOpenAreaInfoDO.getParentId());
response.setPointId(shopInfo.getPointId());
return response; return response;
} }