Skip to content

Instantly share code, notes, and snippets.

@ishults
Last active December 16, 2015 20:06
Show Gist options
  • Save ishults/6d1dbcd84e6252b2bd40 to your computer and use it in GitHub Desktop.
Save ishults/6d1dbcd84e6252b2bd40 to your computer and use it in GitHub Desktop.
Classes
class Parent {
Long id
static hasMany =[ children: Child ]
}
class Child {
Long id
Integer age
String name
Parent parent
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment