package com.mzl.flower.base.annotation; import java.lang.annotation.Documented; import java.lang.annotation.Retention; import java.lang.annotation.RetentionPolicy; @Retention(RetentionPolicy.RUNTIME) @Documented public @interface OperationLog { /** * packageName com.mzl.flower.base.annotation * @author fanghaowei * @version version2.0 * @className OperationLog * @date 2024/12/2 * @description TODO */ String value() default ""; // 填写具体操作,默认是空 String type() default ""; }