package com.kmalbz.database.model import com.kmalbz.database.dao.InputObjects import org.jetbrains.exposed.dao.IntEntity import org.jetbrains.exposed.dao.IntEntityClass import org.jetbrains.exposed.dao.id.EntityID class InputObject(id: EntityID): IntEntity(id) { companion object : IntEntityClass(InputObjects) var tag by InputObjects.tag var date by InputObjects.date var device_id by InputObjects.device_id }