cn.vonce.sql.bean.Join 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.bean;
import cn.vonce.sql.define.ColumnFun;
import cn.vonce.sql.enumerate.JoinType;
import java.io.Serializable;
/**
* Select
*
* @author Jovi
* @version 1.0
* @email [email protected]
* @date 2019年6月10日上午12:00:00
*/
public class Join implements Serializable {
public Join() {
}
public Join(JoinType joinType, String schema, String tableName, String tableAlias) {
this.joinType = joinType;
this.schema = schema;
this.tableName = tableName;
this.tableAlias = tableAlias;
}
public Join(JoinType joinType, String schema, String tableName, String tableAlias, String tableKeyword, String mainKeyword, String on) {
this.joinType = joinType;
this.schema = schema;
this.tableName = tableName;
this.tableAlias = tableAlias;
this.tableKeyword = tableKeyword;
this.mainKeyword = mainKeyword;
this.on = on;
}
private JoinType joinType;
private String schema;
private String tableName;
private String tableAlias;
@Deprecated
private String tableKeyword;
@Deprecated
private String mainKeyword;
@Deprecated
private String on;
/**
* Join 条件
*/
private Condition
© 2015 - 2024 Weber Informatics LLC | Privacy Policy