io.github.wycst.wast.jdbc.executer.JoinEntityMapping Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of wast Show documentation
Show all versions of wast Show documentation
Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines
package io.github.wycst.wast.jdbc.executer;
import java.util.ArrayList;
import java.util.HashMap;
import java.util.List;
import java.util.Map;
/**
* @Author: wangy
* @Date: 2021/7/25 22:22
* @Description:
*/
public class JoinEntityMapping {
/**
* 表名
*/
private String tableName;
/***
* 条件关联on属性映射列表
*
*/
private Map joinOnFieldKeys = new HashMap();
/***
* 条件关联on字段映射列表
*
*/
private Map joinOnColumnKeys = new HashMap();
/***
* queryFields
*/
private List joinColumns = new ArrayList();
public Map getJoinOnFieldKeys() {
return joinOnFieldKeys;
}
public void setJoinOnFieldKeys(Map joinOnFieldKeys) {
this.joinOnFieldKeys = joinOnFieldKeys;
}
public List getJoinColumns() {
return joinColumns;
}
public void setJoinColumns(List joinColumns) {
this.joinColumns = joinColumns;
}
public String getTableName() {
return tableName;
}
public void setTableName(String tableName) {
this.tableName = tableName;
}
public Map getJoinOnColumnKeys() {
return joinOnColumnKeys;
}
public void setJoinOnColumnKeys(Map joinOnColumnKeys) {
this.joinOnColumnKeys = joinOnColumnKeys;
}
}