liujie
2025-04-28 125188b338a603de0d3bf6bad7a3f803b7306fa2
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
package com.panzhihua.sangeshenbian.annotation;
 
import java.lang.annotation.*;
 
/**
 * @author liujie
 * @date 2025/4/28
 */
@Target({ElementType.METHOD})
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface SysLog {
    long operUserId() default 0; // 操作模块
 
    String operatorCategory() default ""; // 操作类型 业务类型(0其它 1新增 2修改 3删除)
 
    String targetName() default ""; //操作类型
}