12 lines
309 B
Kotlin
12 lines
309 B
Kotlin
package dao
|
|
|
|
import org.jetbrains.exposed.dao.*
|
|
import org.jetbrains.exposed.dao.id.EntityID
|
|
import tables.Languages
|
|
|
|
class LanguageDao(id: EntityID<Int>) : IntEntity(id) {
|
|
companion object : IntEntityClass<LanguageDao>(Languages)
|
|
|
|
var name by Languages.name
|
|
var shortName by Languages.shortName
|
|
} |