source: trunk/src/grails-app/domain/PersonGroup.groovy @ 18

Last change on this file since 18 was 18, checked in by tuxta, 15 years ago

Align domain classes to ERD.

File size: 205 bytes
Line 
1class PersonGroup {
2    TypeOfPersonGroup typeOfPersonGroup
3    String name
4    String description
5    boolean isActive
6
7    static hasMany = [persons : Person]
8
9    static belongsTo = TypeOfPersonGroup
10}
Note: See TracBrowser for help on using the repository browser.