UfoRecommendController.java 1.42 KB
package com.yoho.search.restapi.ufo;

import com.yoho.search.common.utils.HttpServletRequestUtils;
import com.yoho.search.models.SearchApiResult;
import com.yoho.search.service.scene.ufo.*;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.RequestMethod;
import org.springframework.web.bind.annotation.RestController;

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

@RestController
public class UfoRecommendController {

    @Autowired
    private UfoRecommendService ufoRecommendService;

    /**
     * 详情页的商品推荐一(根据:名称、品类、品牌)
     */
    @RequestMapping(method = RequestMethod.GET, value = "/ufo/recommendList")
    public SearchApiResult recommendList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoRecommendService.recommendList(paramMap);
    }

    /**
     * 详情页的商品推荐二 (根据:系列、品牌)
     */
    @RequestMapping(method = RequestMethod.GET, value = "/ufo/recommendBySeriesBrandList")
    public SearchApiResult recommendBySeriesBrandList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoRecommendService.recommendBySeriesBrandList(paramMap);
    }

}