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