package com.mzl.flower.base.annotation; import java.lang.annotation.*; @Target({ElementType.METHOD, ElementType.FIELD}) @Retention(RetentionPolicy.RUNTIME) @Documented public @interface DictTrans { String target(); String codeType() default ""; /** * 级联指向的字段名称 */ String cascadeField() default ""; }