main
parent
b692eb53a7
commit
b6162141f3
@ -0,0 +1,18 @@
|
|||||||
|
package com.tamguo.modules.sys.web;
|
||||||
|
|
||||||
|
import org.springframework.stereotype.Controller;
|
||||||
|
import org.springframework.web.bind.annotation.PathVariable;
|
||||||
|
import org.springframework.web.bind.annotation.RequestMapping;
|
||||||
|
|
||||||
|
/**
|
||||||
|
* 页面视图
|
||||||
|
*/
|
||||||
|
@Controller
|
||||||
|
public class SysPageController {
|
||||||
|
|
||||||
|
@RequestMapping("sys/{fn}/{page}")
|
||||||
|
public String page(@PathVariable("fn") String fn , @PathVariable("page") String page){
|
||||||
|
return "modules/sys/" + fn + "/" + page;
|
||||||
|
}
|
||||||
|
|
||||||
|
}
|
Loading…
Reference in new issue