generated from pricelees/issue-pr-template
15 lines
327 B
Kotlin
15 lines
327 B
Kotlin
package roomescape.theme.infrastructure.persistence
|
|
|
|
import jakarta.persistence.*
|
|
|
|
@Entity
|
|
@Table(name = "themes")
|
|
class ThemeEntity(
|
|
@Id
|
|
@GeneratedValue(strategy = GenerationType.IDENTITY)
|
|
var id: Long? = null,
|
|
|
|
var name: String,
|
|
var description: String,
|
|
var thumbnail: String
|
|
) |