package database.model import database.dao.ResultObjects import org.jetbrains.exposed.dao.IntEntity import org.jetbrains.exposed.dao.IntEntityClass import org.jetbrains.exposed.dao.id.EntityID class ResultObject(id: EntityID): IntEntity(id) { companion object : IntEntityClass(ResultObjects) var tag by ResultObjects.tag var date by ResultObjects.date var probability by ResultObjects.probability }