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

Last change on this file since 21 was 21, checked in by gavin, 15 years ago

Remove TypeOfClass? and change to ClassType?. Update ERD to match.
Create and add openMimLogo/Icon.
Generate-all *.
Configure BootStrap? and add entries, some not saving yet.
Update DatabaseDesign?.tex and index.gsp

File size: 261 bytes
RevLine 
[18]1class PersonGroup {
[21]2    PersonGroupType personGroupType
[18]3    String name
[19]4    String description = ""
5    boolean isActive = true
[18]6
7    static hasMany = [persons : Person]
8
[21]9    static belongsTo = PersonGroup
[19]10
11    String toString() {
12        "${this.name}"
13    }
[18]14}
Note: See TracBrowser for help on using the repository browser.