Skip to content

Instantly share code, notes, and snippets.

@jdmwood
Last active November 1, 2019 09:23
Show Gist options
  • Save jdmwood/d02d075dd956e44f499ca0ff3b9625a7 to your computer and use it in GitHub Desktop.
Save jdmwood/d02d075dd956e44f499ca0ff3b9625a7 to your computer and use it in GitHub Desktop.
@Entity
class Customer {
@Id
var id: Int = 0
@Basic(optional=false)
var name: String? = null
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment