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

io.github.dehuckakpyt.telegrambot.model.chain.JpaChain.kt Maven / Gradle / Ivy

There is a newer version: 0.11.2
Show newest version
package io.github.dehuckakpyt.telegrambot.model.chain

import io.github.dehuckakpyt.telegrambot.model.UUIDTable
import io.github.dehuckakpyt.telegrambot.model.source.Chain
import jakarta.persistence.Column
import jakarta.persistence.Entity
import jakarta.persistence.Table


/**
 * Created on 20.07.2023.
 *

* * @author Denis Matytsin */ @Entity @Table(name = "chain") class JpaChain( @Column(nullable = false) override val chatId: Long, @Column(nullable = false) override val fromId: Long, override var step: String?, @Column(columnDefinition = "text") override var content: String?, ) : UUIDTable(), Chain





© 2015 - 2025 Weber Informatics LLC | Privacy Policy