京东外卖desk

This commit is contained in:
shuo.wang
2025-05-26 16:01:50 +08:00
parent 625766a703
commit 6c19332b1e
2 changed files with 4 additions and 0 deletions

View File

@@ -37,4 +37,6 @@ public class PlatformBuildListResponse {
private Integer mtBuyStageStatus;
@ApiModelProperty("快手")
private Integer ksStageStatus;
@ApiModelProperty("京东外卖")
private Integer JDStageStatus;
}

View File

@@ -345,6 +345,8 @@ public class PlatformBuildServiceImpl implements PlatformBuildService {
dto.setElMeStageStatus(stageDTO.getShopSubStageStatus());
} else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_22.getShopSubStage())) {
dto.setKsStageStatus(stageDTO.getShopSubStageStatus());
}else if (stageDTO.getShopSubStage().equals(ShopSubStageEnum.SHOP_STAGE_25.getShopSubStage())) {
dto.setJDStageStatus(stageDTO.getShopSubStageStatus());
}
}
}