Skip to content

Instantly share code, notes, and snippets.

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