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 ""; //操作类型
|
}
|