cn.vonce.sql.annotation.SqlJoin Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of vonce-sqlbean-core Show documentation
Show all versions of vonce-sqlbean-core Show documentation
This is the core project of Sqlbean.
The newest version!
package cn.vonce.sql.annotation;
import cn.vonce.sql.enumerate.JoinType;
import java.lang.annotation.*;
/**
* JoinType
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2019年6月21日上午12:00:00
*/
@Retention(RetentionPolicy.RUNTIME)
@Target(ElementType.FIELD)
@Documented
@Inherited
public @interface SqlJoin {
/**
* 列字段名称
*
* @return
*/
String[] value() default "";
/**
* 是否为一个实体类
*
* @return
*/
boolean isBean() default false;
/**
* 连接类型
*
* @return
*/
JoinType type() default JoinType.INNER_JOIN;
/**
* 连接的schema
*
* @return
*/
String schema() default "";
/**
* 连接的表名
*
* @return
*/
String table() default "";
/**
* 连接表的别名
*
* @return
*/
String tableAlias() default "";
/**
* 连接的表列字段名
*
* @return
*/
String tableKeyword() default "";
/**
* 主表的列字段名
*
* @return
*/
String mainKeyword() default "";
/**
* 连接的表(通常情况下可代替schema、table、tableAlias,优先级高)
*
* @return
*/
Class> from() default void.class;
/**
* 连接条件(优先级高)
*
* @return
*/
Class> on() default void.class;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy