16 lines
397 B
Kotlin
16 lines
397 B
Kotlin
package com.dowstats.data.entities
|
|
|
|
import jakarta.persistence.GeneratedValue
|
|
import jakarta.persistence.GenerationType
|
|
import jakarta.persistence.Id
|
|
import jakarta.persistence.MappedSuperclass
|
|
|
|
@MappedSuperclass
|
|
open class RequirementBase {
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
var id: Long? = null
|
|
|
|
var reference: String? = null
|
|
var value: String? = null
|
|
} |