package com.vci.ubcs.log.controller;
|
|
import lombok.AllArgsConstructor;
|
import lombok.extern.slf4j.Slf4j;
|
import org.springblade.core.tenant.annotation.NonDS;
|
import org.springframework.web.bind.annotation.RequestMapping;
|
import org.springframework.web.bind.annotation.RestController;
|
|
/**
|
* 操作日志管理:(包括登录日志、操作日志、授权日志,以及管理员的以上三种日志)
|
* @author ludc
|
* @date 2023/11/24 10:43
|
*/
|
@NonDS
|
@Slf4j
|
@RestController
|
@AllArgsConstructor
|
@RequestMapping("/operateLog")
|
public class LogOperateController {
|
|
|
|
}
|