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

cn.org.atool.fluent.mybatis.annotation.RefMethod Maven / Gradle / Ivy

package cn.org.atool.fluent.mybatis.annotation;

import java.lang.annotation.*;

/**
 * 关联方法定义
 *
 * @author darui.wu
 */
@Documented
@Retention(RetentionPolicy.RUNTIME)
@Target({ElementType.METHOD})
public @interface RefMethod {
    /**
     * 自动映射关联关系
     * 

* 如果赋值了, 框架生成代码 * 赋值格式 "关联Entity字段 = this.Entity字段 && 关联Entity字段 = this.Entity字段" * 注意: 这里是Entity实体字段, 不是数据库表字段 *

* 如果未赋值, 则手动实现关联查询 */ String value() default ""; }





© 2015 - 2025 Weber Informatics LLC | Privacy Policy