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

cn.mybatis.mp.db.annotations.NestedResultEntity Maven / Gradle / Ivy

There is a newer version: 1.7.6-RC6
Show newest version
package cn.mybatis.mp.db.annotations;


import java.lang.annotation.*;

/**
 * 结果映射
 */

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
public @interface NestedResultEntity {

    /**
     * 对应的实体类
     *
     * @return
     */
    Class target();

    /**
     * 存储层级,用于自动select场景
     *
     * @return
     */
    int storey() default 1;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy