ImportController.java
538 Bytes
package com.huaheng.pc.tool.in;
import org.apache.shiro.authz.annotation.RequiresPermissions;
import org.springframework.stereotype.Controller;
import org.springframework.web.bind.annotation.GetMapping;
import org.springframework.web.bind.annotation.RequestMapping;
/**
* @author
*/
@Controller
@RequestMapping("/tool/import")
public class ImportController {
private String prefix = "tool/import";
@RequiresPermissions("tool:import:view")
@GetMapping()
public String in() {
return prefix + "/import";
}
}