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

query.BasedQuery.kt Maven / Gradle / Ivy

There is a newer version: 1.1.10
Show newest version
package query

import java.sql.Connection

/**
 * sql语句dsl接口
 * @property conn Connection? 数据库连接
 * @property isTransaction Boolean 是否是事务
 */
interface BasedQuery {
    var conn: Connection?

    var isTransaction: Boolean

    fun sql(): String
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy