package com.iailab.framework.common.annotation; import java.lang.annotation.*; /** * @author PanZhibao * @Description * @createTime 2022年05月21日 10:59:00 */ @Target(ElementType.METHOD) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface AutoDict { /** * 暂时无用 * @return */ String value() default ""; }