DegradeInfoCtrl.java 1.25 KB
package com.ui.ctrl;

import com.ui.contants.HttpUriContants;
import com.ui.http.HttpRestClient;
import com.ui.model.BaseResponse;
import com.ui.model.domain.DegradeConfig;
import com.ui.model.rep.PageResponse;
import com.ui.model.req.DegradeInfoReq;
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.ResponseBody;
import org.springframework.web.servlet.ModelAndView;

/**
 * Created by zhaoqi on 2016/8/29 0029.
 */
@Controller
@RequestMapping("degrade")
public class DegradeInfoCtrl {

    @Autowired
    private HttpRestClient httpClient;

    @RequestMapping("/info")
    public ModelAndView toDegradeList() {
        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);
    }
}