mg
2022-10-12 3f9ebf19e687c33287b0eaec64d4564a212f57db
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 "";
}