...
|
...
|
@@ -4,6 +4,7 @@ import com.ui.contants.HttpUriContants; |
|
|
import com.ui.http.HttpRestClient;
|
|
|
import com.ui.model.BaseResponse;
|
|
|
import com.ui.model.req.DegradeInfoReq;
|
|
|
import com.ui.model.req.TypeInfoReq;
|
|
|
import org.springframework.beans.factory.annotation.Autowired;
|
|
|
import org.springframework.stereotype.Controller;
|
|
|
import org.springframework.ui.Model;
|
...
|
...
|
@@ -12,6 +13,8 @@ import org.springframework.web.bind.annotation.ResponseBody; |
|
|
import org.springframework.web.servlet.ModelAndView;
|
|
|
|
|
|
import java.util.HashMap;
|
|
|
import java.util.List;
|
|
|
import java.util.stream.Collectors;
|
|
|
|
|
|
/**
|
|
|
* Created by zhaoqi on 2016/8/29 0029.
|
...
|
...
|
@@ -25,6 +28,11 @@ public class DegradeInfoCtrl { |
|
|
|
|
|
@RequestMapping("/info")
|
|
|
public ModelAndView toDegradeList(Model model) {
|
|
|
BaseResponse zkListResponse=httpClient.defaultGet(HttpUriContants.TYPE_GET_ZK_LEAF, BaseResponse.class);
|
|
|
if(zkListResponse!=null&&zkListResponse.getCode()==200&&zkListResponse.getData()!=null){
|
|
|
model.addAttribute("zkList",zkListResponse.getData());
|
|
|
}
|
|
|
|
|
|
BaseResponse degradeFunction = httpClient.defaultPost(HttpUriContants.GET_DEGRADE_FUNCTION,null,BaseResponse.class);
|
|
|
if (degradeFunction.getData() != null){
|
|
|
model.addAttribute("functionPoints",((HashMap)degradeFunction.getData()).get("function"));
|
...
|
...
|
|