feat:shopId
This commit is contained in:
@@ -14,7 +14,7 @@ public enum FileTypeEnum {
|
|||||||
MY_FRANCHISEES("my_franchisees","我的加盟商"),
|
MY_FRANCHISEES("my_franchisees","我的加盟商"),
|
||||||
TEAM_FRANCHISEES("team_franchisees","团队加盟商"),
|
TEAM_FRANCHISEES("team_franchisees","团队加盟商"),
|
||||||
PREPARATION("preparation","进度管理"),
|
PREPARATION("preparation","进度管理"),
|
||||||
BRANCH_SHOP_LIST("branchShopList","开店列表")
|
BRANCH_SHOP_LIST("branchShopList","开店管理")
|
||||||
;
|
;
|
||||||
private String fileType;
|
private String fileType;
|
||||||
private String desc;
|
private String desc;
|
||||||
|
|||||||
@@ -33,9 +33,9 @@ public class PointRecommendLineRequest {
|
|||||||
if(Objects.isNull(this.shopIds) || CollectionUtils.isEmpty(this.shopIds) || Objects.isNull(pointId)){
|
if(Objects.isNull(this.shopIds) || CollectionUtils.isEmpty(this.shopIds) || Objects.isNull(pointId)){
|
||||||
return Lists.newArrayList();
|
return Lists.newArrayList();
|
||||||
}
|
}
|
||||||
return this.shopIds.stream().map(shopIds -> {
|
return this.shopIds.stream().map(shopId -> {
|
||||||
PointRecommendDO pointRecommendDO = new PointRecommendDO();
|
PointRecommendDO pointRecommendDO = new PointRecommendDO();
|
||||||
pointRecommendDO.setLineId(shopIds);
|
pointRecommendDO.setShopId(shopId);
|
||||||
pointRecommendDO.setDevelopmentManager(this.developmentManager);
|
pointRecommendDO.setDevelopmentManager(this.developmentManager);
|
||||||
pointRecommendDO.setPointId(pointId);
|
pointRecommendDO.setPointId(pointId);
|
||||||
pointRecommendDO.setStatus(PointRecommendStatusEnum.POINT_RECOMMEND_STATUS_1.getCode());
|
pointRecommendDO.setStatus(PointRecommendStatusEnum.POINT_RECOMMEND_STATUS_1.getCode());
|
||||||
|
|||||||
Reference in New Issue
Block a user