建立日志包

This commit is contained in:
zhanghongqing
2018-06-08 16:49:26 +08:00
parent e8bd4a4d88
commit d5557b2ced
4 changed files with 37 additions and 0 deletions

View File

@@ -0,0 +1,5 @@
package com.nis.domain.log;
public class VpenVpn {
}

View File

@@ -0,0 +1,22 @@
package com.nis.web.controller.log.ntc;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.RequestMapping;
import org.springframework.web.bind.annotation.ResponseBody;
import com.nis.web.controller.BaseController;
@Controller
@RequestMapping(value = "/logs")
public class LogChartController extends BaseController{
@RequestMapping(value="logChart")
public String logChart(){
return "/logs/chart";
}
@RequestMapping(value="ajaxChart")
@ResponseBody
public String ajaxChart(){
return "";
}
}

View File

@@ -0,0 +1,5 @@
package com.nis.web.dao.log;
public class VpenvpnDao {
}

View File

@@ -0,0 +1,5 @@
package com.nis.web.service.log;
public class LogVpenvpnService {
}