This commit is contained in:
shuo.wang
2025-04-17 21:47:39 +08:00
parent 146d4b11cf
commit 9f71a676c5
2 changed files with 5 additions and 0 deletions

View File

@@ -200,4 +200,7 @@ public class BuildInformationResponse {
@ApiModelProperty(value = "点餐小程序店铺名称")
private String miniProgramsShopName;
@ApiModelProperty(value = "建店资料当前阶段状态")
private Integer shopSubStageStatus;
}

View File

@@ -66,6 +66,8 @@ public class BuildInformationServiceImpl implements BuildInformationService {
throw new ServiceException(ErrorCodeEnum.SHOP_NOT_EXIST);
}
LineInfoDO lineInfoDO = lineInfoDAO.getLineInfo(shopInfo.getLineId());
ShopStageInfoDO shopSubStageInfo = shopStageInfoDAO.getShopSubStageInfo(shopId, ShopSubStageEnum.SHOP_STAGE_15);
response.setShopSubStageStatus(shopSubStageInfo.getShopSubStageStatus());
response.setUsername(lineInfoDO.getUsername());
response.setShopId(shopId);
response.setShopName(shopInfo.getShopName());