cloudroam
2024-12-04 6c823dd44dbde79f008001a2a11e7bf9bc6bf8cc
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 "";
}