nbcp.myoql.db.sql.define.MetaDefine.kt Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ktmyoql Show documentation
Show all versions of ktmyoql Show documentation
kotlin orm -- mysql,mongo , just like ktorm
The newest version!
package nbcp.myoql.db.sql.define
/**
* Created by yuxh on 2018/6/12
*/
/**
* 外键定义
*/
data class FkDefine @JvmOverloads constructor(
var table: String = "",
var column: String = "",
var refTable: String = "",
var refColumn: String = ""
)
/**
* 表示表的一个唯一键项.
*/
data class UnionKeyDefine @JvmOverloads constructor(
var table: String = "",
var unionKeys: Set = setOf()
)
/**
* 表示表的一个隔离维度项
*/
data class RegionKeyDefine @JvmOverloads constructor(
var table: String = "",
var regionKeys: Set = setOf()
)