提交配置基础类

This commit is contained in:
wangxin
2018-02-07 14:51:11 +08:00
parent 9984a074ad
commit db9795e70f
48 changed files with 3283 additions and 0 deletions

View File

@@ -0,0 +1,27 @@
/**
*@Title: DnsIpCfgController.java
*@Package com.nis.web.controller.restful
*@Description TODO
*@author dell
*@date 2018年2月7日 下午2:16:58
*@version 版本号
*/
package com.nis.web.controller.restful;
import org.springframework.stereotype.Service;
import org.springframework.web.bind.annotation.RequestMapping;
import com.nis.web.controller.BaseController;
/**
* @ClassName: DnsIpCfgController.java
* @Description: TODO
* @author (dell)
* @date 2018年2月7日 下午2:16:58
* @version V1.0
*/
@Service
@RequestMapping("/")
public class IpCfgController extends BaseController {
}