LogOperation.java 276 Bytes EditWeb IDE 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 package io.hmit.common.annotation; import java.lang.annotation.*; /** * 操作日志注解 * * @author zsh 408538940@qq.com */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface LogOperation { String value() default ""; }