1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
| package com.vci.ubcs.starter.util;
|
| import org.springblade.core.log.annotation.GrantLog;
| import org.springblade.core.log.annotation.OperateLog;
| import org.springframework.context.annotation.Configuration;
| import org.springframework.stereotype.Component;
|
| /**
| * @author ludc
| * @date 2023/11/29 12:39
| */
| @Configuration
| public class SaveLogUtil {
|
| /**
| * 操作日志插入操作
| * @param res
| */
| @OperateLog
| public boolean operateLog(String type,boolean isException/*是否触发了异常*/,String res){
| return true;
| }
|
| }
|
|