This repository has been archived on 2025-09-14. You can view files and clone it, but cannot push or open issues or pull requests.
Files
k18-ntcs-web-ntc/src/main/java/com/nis/web/controller/configuration/IpCfgController.java

40 lines
773 B
Java
Raw Normal View History

package com.nis.web.controller.configuration;
import org.springframework.stereotype.Controller;
2018-02-02 17:58:32 +08:00
import org.springframework.web.bind.annotation.RequestMapping;
/**
* IP相关配置控制类
* @author dell
*
*/
@Controller
2018-02-02 17:58:32 +08:00
@RequestMapping("${adminPath}/cfg/ip")
public class IpCfgController {
2018-02-02 17:58:32 +08:00
@RequestMapping(value = {"ipWhiteList"})
public String ipWhiteList() {
return "/cfg/ipWhiteList";
}
2018-02-02 17:58:32 +08:00
@RequestMapping(value = {"ipWhiteForm"})
public String ipWhiteForm() {
return "/cfg/ipWhiteForm";
}
@RequestMapping(value = {"ipBlockList"})
public String ipBlockList() {
return "/cfg/ipBlockList";
}
@RequestMapping(value = {"ipBlockForm"})
public String ipBlockForm() {
return "/cfg/ipBlockForm";
}
}