Commit 6f3ea603c85e083e126bbddc598e25e1b2949341

Authored by 张志伟
1 parent bd286de6

:sparkles: feature(*): 新增查询续保成交的数据

- 升级sdk参数
fw-valhalla-sdk/src/main/java/cn/fw/valhalla/sdk/param/ShouldBeCompletedQuery.java
... ... @@ -72,7 +72,7 @@ public class ShouldBeCompletedQuery {
72 72 if (shopId == null || shopId.length == 0) {
73 73 return;
74 74 }
75   - this.shopIds = Arrays.stream(shopId).map(String::valueOf).collect(Collectors.joining(","));
  75 + this.shopIds = Arrays.stream(shopId).map(String::valueOf).collect(Collectors.joining(SEPARATOR));
76 76 }
77 77  
78 78 /**
... ... @@ -84,6 +84,6 @@ public class ShouldBeCompletedQuery {
84 84 if (CollectionUtils.isEmpty(shopIdList)) {
85 85 return;
86 86 }
87   - this.shopIds = shopIdList.stream().map(String::valueOf).collect(Collectors.joining(","));
  87 + this.shopIds = shopIdList.stream().map(String::valueOf).collect(Collectors.joining(SEPARATOR));
88 88 }
89 89 }
... ...