This commit is contained in:
shuo.wang
2025-01-13 16:38:41 +08:00
parent 15549ce269
commit e15dbdd99f
4 changed files with 13 additions and 12 deletions

View File

@@ -60,7 +60,8 @@ public class MiniShopPageVO {
private String joinMode;
@ApiModelProperty("意向开店区域")
private String wantRegionName;
@ApiModelProperty("门店状态'0.跟进中 1.已完成 2.已放弃',")
private Integer shopStatus;
public MiniShopPageVO(Long shopId, String shopName, String shopCode, Boolean flag, Long pointId, Long regionId, String regionName) {
this.shopId = shopId;
this.shopName = shopName;
@@ -99,6 +100,7 @@ public class MiniShopPageVO {
if (Objects.nonNull(wantRegionMap)) {
miniShopPageVO.setWantRegionName(wantRegionMap.get(shopInfo.getWantShopAreaId()));
}
miniShopPageVO.setShopStatus(shopInfo.getShopStatus());
resultList.add(miniShopPageVO);
}