feat:shopId

This commit is contained in:
苏竹红
2025-01-22 15:53:56 +08:00
parent 492f2999ee
commit ca3303d898
2 changed files with 3 additions and 3 deletions

View File

@@ -33,9 +33,9 @@ public class PointRecommendLineRequest {
if(Objects.isNull(this.shopIds) || CollectionUtils.isEmpty(this.shopIds) || Objects.isNull(pointId)){
return Lists.newArrayList();
}
return this.shopIds.stream().map(shopIds -> {
return this.shopIds.stream().map(shopId -> {
PointRecommendDO pointRecommendDO = new PointRecommendDO();
pointRecommendDO.setLineId(shopIds);
pointRecommendDO.setShopId(shopId);
pointRecommendDO.setDevelopmentManager(this.developmentManager);
pointRecommendDO.setPointId(pointId);
pointRecommendDO.setStatus(PointRecommendStatusEnum.POINT_RECOMMEND_STATUS_1.getCode());