RobotQuestionController.java
1.97 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
48
49
50
51
52
53
54
55
package com.yoho.search.restapi.others;
import com.yoho.search.common.cache.aop.SearchCacheAble;
import com.yoho.search.common.utils.HttpServletRequestUtils;
import com.yoho.search.models.SearchApiResult;
import com.yoho.search.service.service.IRobotQuestionService;
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;
/**
* Created by wangnan on 2016/12/13.
*/
@Controller
public class RobotQuestionController {
@Autowired
private IRobotQuestionService robotQuestionService;
/**
* 搜索机器人客服问答列表(新)
*/
@SearchCacheAble(cacheInMinute = 1, cacheName = "ROBOT_QUESTION_NEW")
@RequestMapping(method = RequestMethod.GET, value = "/robotquestionNew")
@ResponseBody
public SearchApiResult searchRobotQuestionNew(HttpServletRequest request) {
Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
return robotQuestionService.robotQuestionNew(paramMap);
}
/**
* 搜索机器人客服问答列表
*/
@SearchCacheAble(cacheInMinute = 1, cacheName = "ROBOT_QUESTION")
@RequestMapping(method = RequestMethod.GET, value = "/robotquestion")
@ResponseBody
public SearchApiResult searchRobotQuestion(HttpServletRequest request) {
Map<String, String> paramMap = HttpServletRequestUtils.transParamType(request);
return robotQuestionService.robotQuestion(paramMap);
}
/**
* 按id查询当前ES中的数据
*/
@RequestMapping(method = RequestMethod.GET, value = "/queryRobotQuestionById")
@ResponseBody
public SearchApiResult queryRobotQuestionById(String id) {
return robotQuestionService.queryRobotQuestionById(id);
}
}