fix 开店详情增加字段

This commit is contained in:
shuo.wang
2025-01-15 11:04:33 +08:00
parent cffd9d8624
commit d1975cb87e
2 changed files with 3 additions and 1 deletions

View File

@@ -55,5 +55,6 @@ public class BranchShopDetailResponse {
@ApiModelProperty("意向开店区域")
private String wantRegionName;
@ApiModelProperty("门店状态:0.跟进中 1.已完成 2.已放弃")
private Integer shopStatus;
}

View File

@@ -285,6 +285,7 @@ public class ShopServiceImpl implements ShopService {
response.setShopName(shopInfo.getShopName());
response.setJoinMode(shopInfo.getJoinMode());
response.setShopCode(shopInfo.getShopCode());
response.setShopStatus(shopInfo.getShopStatus());
response.setFranchiseBrand(shopInfo.getFranchiseBrand());
if (CollectionUtils.isNotEmpty(shopContractActualCompletionTime)) {
ScheduleDTO scheduleDTO = shopContractActualCompletionTime.get(CommonConstants.ZERO);