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

tech.simter.kv.impl.dao.jpa.po.KeyValuePo.kt Maven / Gradle / Ivy

The newest version!
package tech.simter.kv.impl.dao.jpa.po

import tech.simter.kv.TABLE_KV
import tech.simter.kv.core.KeyValue
import javax.persistence.Column
import javax.persistence.Entity
import javax.persistence.Id
import javax.persistence.Table

/**
 * The JPA Entity implementation of [KeyValue].
 *
 * @author RJ
 */
@Entity
@Table(name = TABLE_KV)
data class KeyValuePo(
  @Id
  @Column(length = 100)
  override val k: String,
  override val v: String
) : KeyValue




© 2015 - 2024 Weber Informatics LLC | Privacy Policy