DegradeInfoCtrl.java
1.72 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
package com.ui.ctrl;
import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.req.DegradeInfoReq;
import org.springframework.beans.factory.annotation.Autowired;
import org.springframework.stereotype.Controller;
import org.springframework.ui.Model;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import org.springframework.web.servlet.ModelAndView;
import java.util.HashMap;
/**
* Created by zhaoqi on 2016/8/29 0029.
*/
@Controller
@RequestMapping("degrade")
public class DegradeInfoCtrl {
@Autowired
private HttpRestClient httpClient;
@RequestMapping("/info")
public ModelAndView toDegradeList(Model model) {
BaseResponse degradeFunction = httpClient.defaultPost(HttpUriContants.GET_DEGRADE_FUNCTION,null,BaseResponse.class);
if (degradeFunction.getData() != null){
model.addAttribute("functionPoints",((HashMap)degradeFunction.getData()).get("function"));
model.addAttribute("level1Pages",((HashMap)degradeFunction.getData()).get("level1"));
model.addAttribute("level2Pages",((HashMap)degradeFunction.getData()).get("level2"));
}
return new ModelAndView("degrade/degradeList");
}
@ResponseBody
@RequestMapping("/getList")
public BaseResponse getDegradeInfoList(DegradeInfoReq req) {
return httpClient.defaultPost(HttpUriContants.GET_DEGRADE_INFO,req,BaseResponse.class);
}
@ResponseBody
@RequestMapping("/edit")
public BaseResponse editDegradeInfo(DegradeInfoReq req) {
return httpClient.defaultPost(HttpUriContants.EDIT_DEGRADE_INFO,req,BaseResponse.class);
}
}