org.zodiac.mybatisplus.binding.annotation.BindDict Maven / Gradle / Ivy
package org.zodiac.mybatisplus.binding.annotation;
import java.lang.annotation.*;
/**
* 绑定字典注解。
*
*/
@Target({ElementType.FIELD})
@Retention(RetentionPolicy.RUNTIME)
@Inherited
@Documented
public @interface BindDict {
/***
* 绑定数据字典类型。
*
* @return 类型
*/
String type();
/***
* 数据字典项取值字段。
*
* @return 字段名
*/
String field() default "";
}