fix 开店详情

This commit is contained in:
shuo.wang
2025-01-15 13:42:56 +08:00
parent d1bcd2c558
commit fb07cdabcd
2 changed files with 9 additions and 1 deletions

View File

@@ -49,12 +49,18 @@ public class BranchShopDetailResponse {
@ApiModelProperty("招商经理userId")
private String investmentManagerId;
@ApiModelProperty("所属大区")
@ApiModelProperty("所属大区name")
private String regionName;
@ApiModelProperty("所属大区id")
private Long regionId;
@ApiModelProperty("意向开店区域")
private String wantRegionName;
@ApiModelProperty("意向开店区域id")
private Long wantRegionId;
@ApiModelProperty("门店状态:0.跟进中 1.已完成 2.已放弃")
private Integer shopStatus;
}

View File

@@ -295,6 +295,8 @@ public class ShopServiceImpl implements ShopService {
}
response.setInvestmentManagerId(shopInfo.getInvestmentManager());
response.setInvestmentManagerName(invest.getName());
response.setRegionId(shopInfo.getRegionId());
response.setWantRegionId(shopInfo.getWantShopAreaId());
response.setRegionName(shopRegion.getName());
response.setWantRegionName(wantShopArea);
return response;