|
@@ -64,7 +64,7 @@ public class FeatureService {
|
|
|
}
|
|
|
}
|
|
|
|
|
|
- //skuid
|
|
|
+ // skuid
|
|
|
for (Long skuId : skuIdList) {
|
|
|
if (StringUtils.isNotEmpty(param.getMid())) {
|
|
|
protos.add(genWithMidAndSkuId("alg_mid_feature_sku_action", param.getMid(), String.valueOf(skuId)));
|
|
@@ -102,15 +102,6 @@ public class FeatureService {
|
|
|
return this.invokeFeatureService(protos);
|
|
|
}
|
|
|
|
|
|
- public Feature getCreativeBasicInfo(Collection<Long> creativeIds) {
|
|
|
- List<FeatureKeyProto> protos = new ArrayList<>(creativeIds.size());
|
|
|
- for (Long creativeId : creativeIds) {
|
|
|
- String cidStr = String.valueOf(creativeId);
|
|
|
- protos.add(genWithCid("alg_cid_feature_basic_info", cidStr));
|
|
|
- }
|
|
|
- return this.invokeFeatureService(protos);
|
|
|
- }
|
|
|
-
|
|
|
public Feature invokeFeatureService(List<FeatureKeyProto> protos) {
|
|
|
|
|
|
Map<String, String> featureMap = remoteService.getFeature(protos);
|