CollageController.java 1.15 KB
package com.yoho.search.restapi.others;

import com.yoho.search.aop.cache.SearchCacheAble;
import com.yoho.search.common.utils.HttpServletRequestUtils;
import com.yoho.search.models.SearchApiResult;
import com.yoho.search.service.scene.others.CollageService;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.ResponseBody;

import javax.servlet.http.HttpServletRequest;
import java.util.Map;

/**
 * @author wangnan
 * @version 2018/9/4
 */
@Controller
public class CollageController {

    @Autowired
    private CollageService collageService;

    /**
     * 搜索拼团购
     */
    @SearchCacheAble(cacheInMinute = 1, cacheName = "COLLAGE")
    @RequestMapping(method = RequestMethod.GET, value = "/collage")
    @ResponseBody
    public SearchApiResult collage(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return collageService.searchList(paramMap);
    }
}