Skip to content

Instantly share code, notes, and snippets.

@manuelernesto
Last active July 5, 2022 20:08
Show Gist options
  • Save manuelernesto/0f862953c91d52cdc87fc403198f0c61 to your computer and use it in GitHub Desktop.
Save manuelernesto/0f862953c91d52cdc87fc403198f0c61 to your computer and use it in GitHub Desktop.
@Entity
@Table(name = "tb_player")
data class Player(
@Id @GeneratedValue(strategy = GenerationType.AUTO) var id: Long,
val name: String,
val age: Int,
val nationality: String
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment