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

@@ -14,7 +14,7 @@ public enum FileTypeEnum {
MY_FRANCHISEES("my_franchisees","我的加盟商"),
TEAM_FRANCHISEES("team_franchisees","团队加盟商"),
PREPARATION("preparation","进度管理"),
BRANCH_SHOP_LIST("branchShopList","开店列表")
BRANCH_SHOP_LIST("branchShopList","开店管理")
;
private String fileType;
private String desc;

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());