cloudroam
2024-12-04 2432594a4d11b47a503795349defa31872f85789
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
package com.mzl.flower.base.annotation;
 
 
import java.lang.annotation.Documented;
import java.lang.annotation.Retention;
import java.lang.annotation.RetentionPolicy;
 
@Retention(RetentionPolicy.RUNTIME)
@Documented
public @interface OperationLog {
/**
 * packageName com.mzl.flower.base.annotation
 * @author fanghaowei
 * @version version2.0
 * @className OperationLog
 * @date 2024/12/2
 * @description TODO
 */
 
String value() default "";
    // 填写具体操作,默认是空
    String type() default "";
}