UfoAggregationController.java 1.89 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.UfoBrandListService;
import com.yoho.search.service.scene.ufo.UfoSelectionListService;
import com.yoho.search.service.scene.ufo.UfoSeriesListService;
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 UfoAggregationController {

    @Autowired
    private UfoBrandListService ufoBrandListService;
    @Autowired
    private UfoSeriesListService ufoSeriesListService;
    @Autowired
    private UfoSelectionListService ufoSelectionListService;

    //ufo品牌列表-聚合接口
    @RequestMapping(method = RequestMethod.GET, value = "/ufo/brandList")
    public SearchApiResult ufoBrandList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoBrandListService.ufoBrandList(paramMap);
    }

    // ufo系列-聚合接口
    @RequestMapping(method = RequestMethod.GET, value = "/ufo/seriesList")
    public SearchApiResult seriesList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoSeriesListService.searchSeriesList(paramMap);
    }

    // ufo通用筛选项接口
    @RequestMapping(method = RequestMethod.GET, value = "/ufo/selectionList")
    public SearchApiResult selectionList(HttpServletRequest request) {
        Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
        return ufoSelectionListService.ufoSelectionList(paramMap);
    }

}