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

com.github.chengyuxing.sql.dsl.clause.condition.AndGroup Maven / Gradle / Ivy

Go to download

Light wrapper of JDBC, support ddl, dml, query, plsql/procedure/function, transaction and manage sql file.

There is a newer version: 9.0.2
Show newest version
package com.github.chengyuxing.sql.dsl.clause.condition;

import java.util.List;

public class AndGroup implements Criteria {
    private final List group;

    public AndGroup(List group) {
        this.group = group;
    }

    public List getGroup() {
        return group;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy