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

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

package cn.mybatis.mp.db.annotations;


import java.lang.annotation.*;

/**
 * 实体类映射,会自动关键 实体类于注解类的关系
 * 无法自动映射的 可使用 @EntityField 注解(精准)
 */

@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.TYPE)
public @interface ResultEntity {

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

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




© 2015 - 2024 Weber Informatics LLC | Privacy Policy