|
@@ -7,6 +7,7 @@ import java.util.Map; |
|
@@ -7,6 +7,7 @@ import java.util.Map; |
7
|
|
7
|
|
8
|
import javax.annotation.PostConstruct;
|
8
|
import javax.annotation.PostConstruct;
|
9
|
|
9
|
|
|
|
10
|
+import com.yoho.search.recall.scene.beans.strategy.StrategyEnum;
|
10
|
import org.apache.commons.collections.MapUtils;
|
11
|
import org.apache.commons.collections.MapUtils;
|
11
|
import org.apache.commons.lang.StringUtils;
|
12
|
import org.apache.commons.lang.StringUtils;
|
12
|
import org.slf4j.Logger;
|
13
|
import org.slf4j.Logger;
|
|
@@ -220,6 +221,10 @@ public class ProductIndexBaseService { |
|
@@ -220,6 +221,10 @@ public class ProductIndexBaseService { |
220
|
productMap.put("deposit", MapUtils.getDoubleValue(map, ProductIndexEsField.deposit, 0));
|
221
|
productMap.put("deposit", MapUtils.getDoubleValue(map, ProductIndexEsField.deposit, 0));
|
221
|
productMap.put("deposit_multiples", MapUtils.getIntValue(map, ProductIndexEsField.depositMultiples));
|
222
|
productMap.put("deposit_multiples", MapUtils.getIntValue(map, ProductIndexEsField.depositMultiples));
|
222
|
|
223
|
|
|
|
224
|
+ // 找回类型-全部使用默认即可
|
|
|
225
|
+ productMap.put("recall_type", StrategyEnum.DEFAULT.name());
|
|
|
226
|
+
|
|
|
227
|
+
|
223
|
return productMap;
|
228
|
return productMap;
|
224
|
}
|
229
|
}
|
225
|
|
230
|
|