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

cn.jiangzeyin.database.util.SqlAndParameters Maven / Gradle / Ivy

There is a newer version: 1.2.11
Show newest version
package cn.jiangzeyin.database.util;

import java.util.HashMap;
import java.util.List;

/**
 * sql 处理后对象
 *
 * @author jiangzeyin
 */
public class SqlAndParameters {
    private String sql;
    private List parameters;
    private List cloums;
    private HashMap systemMap;

    public List getCloums() {
        return cloums;
    }

    public void setCloums(List cloums) {
        this.cloums = cloums;
    }

    public HashMap getSystemMap() {
        return systemMap;
    }

    public void setSystemMap(HashMap systemMap) {
        this.systemMap = systemMap;
    }

    public String getSql() {
        return sql;
    }

    public void setSql(CharSequence sql) {
        this.sql = sql.toString();
    }

    public List getParameters() {
        return parameters;
    }

    public void setParameters(List parameters) {
        this.parameters = parameters;
    }
}