Skip to content

Instantly share code, notes, and snippets.

@diegolirio
Created November 18, 2021 02:38
Show Gist options
  • Select an option

  • Save diegolirio/01467ea5a3cd5fa6b7fa6b1ca2d4093d to your computer and use it in GitHub Desktop.

Select an option

Save diegolirio/01467ea5a3cd5fa6b7fa6b1ca2d4093d to your computer and use it in GitHub Desktop.
@Entity
@Table(name = "CustomerEntity")
data class CustomerSpringDataEntity(
@Id
@GeneratedValue
var id: Long? = null,
var firstname: String? = null,
var lastname: String? = null
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment