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

io.github.wycst.wast.jdbc.executer.JoinEntityMapping Maven / Gradle / Ivy

Go to download

Wast is a high-performance Java toolset library package that includes JSON, YAML, CSV, HttpClient, JDBC and EL engines

There is a newer version: 0.0.16
Show newest version
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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy