All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.zodiac.mybatisplus.binding.annotation.BindDict Maven / Gradle / Ivy

There is a newer version: 1.6.8
Show newest version
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 "";
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy