无关风月
2025-02-14 11ec1c23a9f47ed70b124e413e33e3696897390f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
package com.jilongda.common.log;
 
import java.lang.annotation.*;
 
/**
 * 自定义登录日志注解
 *
 * @author wu
 */
//注解放置的目标位置,METHOD是可注解在方法级别上
@Target(ElementType.METHOD)
//注解在哪个阶段执行 运行时
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OperLoginLog {
//    String operModul() default ""; // 操作模块
//    String operType() default "";  // 操作类型
//    String operDesc() default "";  // 操作说明
}