package com.ycl.annotation; import java.lang.annotation.*; @Documented @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) public @interface LogSave { String operationType() default ""; String contain() default ""; }