建立日志包
This commit is contained in:
@@ -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 "";
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user