Authored by hugufei

fix 缓存BUG

@@ -157,6 +157,6 @@ BrandController { @@ -157,6 +157,6 @@ BrandController {
157 @ResponseBody 157 @ResponseBody
158 public SearchApiResult ufoBrandList(HttpServletRequest request) { 158 public SearchApiResult ufoBrandList(HttpServletRequest request) {
159 Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request); 159 Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
160 - return brandListService.ufoBrandList(paramMap); 160 + return brandListService.ufoBrandListForPlateForm(paramMap);
161 } 161 }
162 } 162 }
@@ -229,8 +229,8 @@ public class BrandListService implements ApplicationEventPublisherAware { @@ -229,8 +229,8 @@ public class BrandListService implements ApplicationEventPublisherAware {
229 return result; 229 return result;
230 } 230 }
231 231
232 - @SearchCacheAble(cacheName = "UFO_BRAND_LIST", cacheInMinute = CacheInMinute.Minute_30, excludeParams = {"page", "order", "uid", "udid"})  
233 - public SearchApiResult ufoBrandList(Map<String, String> paramMap) { 232 + @SearchCacheAble(cacheName = "ufoBrandListForPlateForm", cacheInMinute = CacheInMinute.Minute_30, excludeParams = {"page", "order", "uid", "udid"})
  233 + public SearchApiResult ufoBrandListForPlateForm(Map<String, String> paramMap) {
234 try { 234 try {
235 // 1)构建参数 235 // 1)构建参数
236 SearchParam searchParam = new SearchParam(); 236 SearchParam searchParam = new SearchParam();