liujie
2025-04-29 40bfb646d1b962d33841c1ebbceb0dd7cb668bfb
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
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 {
    //  1登录 2职位  3角色 4账号 5 问题 6banner  7党员 8党员审核 9导出
    int operId() default 0; // 操作模块
 
    String operatorCategory() default ""; // 操作类型 业务类型(0其它 1新增 2修改 3删除)
 
    String targetName() default ""; //操作类型
}