Last active
December 16, 2015 20:06
-
-
Save ishults/6d1dbcd84e6252b2bd40 to your computer and use it in GitHub Desktop.
Classes
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
class Parent { | |
Long id | |
static hasMany =[ children: Child ] | |
} |
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
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