fuliqi
2023-12-11 a1b0e5c618b9cd1c2521be14beec70321232ec1d
1
2
3
4
5
6
7
8
9
10
11
12
13
package com.ycl.annotation;
 
import java.lang.annotation.*;
 
@Documented
@Target(ElementType.METHOD)
@Retention(RetentionPolicy.RUNTIME)
public @interface LogSave {
 
    String operationType() default "";
 
    String contain() default "";
}