业务操作控制器

pull/65/head
TSQ 2021-01-05 15:31:25 +08:00
parent e0a505eac9
commit efe2490f73
1 changed files with 36 additions and 0 deletions

View File

@ -0,0 +1,36 @@
package cn.stylefeng.guns.modular.log;
import cn.stylefeng.roses.kernel.resource.api.annotation.ApiResource;
import cn.stylefeng.roses.kernel.resource.api.annotation.GetResource;
import lombok.extern.slf4j.Slf4j;
import org.springframework.stereotype.Controller;
/**
*
*
* @param
* @return
* @author TSQ
* @date 2021/1/5 14:44
*/
@Controller
@Slf4j
@ApiResource(name = "操作日志管理相关的界面渲染", path = "log")
public class LogController {
private String PREFIX = "/modular/system/log";
/**
*
*
* @param
* @return
* @author TSQ
* @date 2021/1/5 15:18
*/
@GetResource(name="操作日志管理列表" , path = "", requiredPermission = false ,requiredLogin = false)
public String indexView(){
return PREFIX + "log.html";
}
}