fangyuan
2022-11-18 c9d9a680d60722048fec46019b4a7ca36f821c58
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 "";
}