Authored by hugufei

普通列表去除skn_default_img的返回

... ... @@ -50,7 +50,6 @@ public class ProductIndexBaseService {
productIndexIncludeFields.add(ProductIndexEsField.isstudentrebate);
productIndexIncludeFields.add(ProductIndexEsField.defaultImages);
productIndexIncludeFields.add(ProductIndexEsField.sknDefaultImg);
productIndexIncludeFields.add(ProductIndexEsField.cover_1);
productIndexIncludeFields.add(ProductIndexEsField.cover_2);
... ... @@ -144,7 +143,6 @@ public class ProductIndexBaseService {
productMap.put("is_student_rebate", MapUtils.getString(map, ProductIndexEsField.isstudentrebate, "N"));
// 把gateway逻辑抽过来,抽取cover1,cover2
productMap.put("skn_default_img", MapUtils.getString(map, ProductIndexEsField.sknDefaultImg, ""));
productMap.put("default_images", MapUtils.getString(map, ProductIndexEsField.defaultImages, ""));
productMap.put("cover_1", MapUtils.getString(map, ProductIndexEsField.cover_1, ""));
productMap.put("cover_2", MapUtils.getString(map, ProductIndexEsField.cover_2, ""));
... ...