UfoAggregationController.java
1.89 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
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);
}
}