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

tech.harmonysoft.oss.sql.dsl.operation.Operation.kt Maven / Gradle / Ivy

package tech.harmonysoft.oss.sql.dsl.operation

import tech.harmonysoft.oss.sql.dsl.Sql

data class Operation(
    val type: String,
    val select: Sql.Select
) {

    override fun toString(): String {
        return " $type $select"
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy