...
|
...
|
@@ -2,6 +2,7 @@ package com.yoho.search.service.service.helper; |
|
|
|
|
|
import com.yoho.search.base.utils.CharUtils;
|
|
|
import com.yoho.search.base.utils.ISearchConstants;
|
|
|
import com.yoho.search.base.utils.SearchPageIdDefine;
|
|
|
import com.yoho.search.service.service.SearchDynamicConfigService;
|
|
|
import com.yoho.search.service.utils.SearchRequestParams;
|
|
|
import org.apache.commons.lang.StringUtils;
|
...
|
...
|
@@ -228,7 +229,7 @@ public class SearchCommonHelper { |
|
|
*/
|
|
|
public boolean isNewRecPage(Map<String, String> paramMap) {
|
|
|
String pageId = paramMap.get("pageId");
|
|
|
if (StringUtils.isBlank(pageId) || !pageId.equals("4")) {
|
|
|
if (StringUtils.isBlank(pageId) || !pageId.equals(SearchPageIdDefine.PAGE_ID_NEW)) {
|
|
|
return false;
|
|
|
}
|
|
|
return true;
|
...
|
...
|
|