Created
November 18, 2021 02:38
-
-
Save diegolirio/01467ea5a3cd5fa6b7fa6b1ca2d4093d to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| @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