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

nbcp.myoql.db.es.base.EsColumns.kt Maven / Gradle / Ivy

The newest version!
package nbcp.myoql.db.es.base

/**
 * Es 多列
 */
class EsColumns(vararg value: EsColumnName) : ArrayList() {
    init{
        this.addAll(value)
    }
    infix fun and (other: EsColumnName) : EsColumns {
        this.add(other);
        return this;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy