source: trunk/src/grails-app/domain/Modification.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: 356 bytes
RevLine 
[16]1class Modification {
2    Person person
[21]3    ModificationType modificationType
[16]4    Task task
5    Date dateTime
6    String comments
7
[21]8    static belongsTo = [Person, ModificationType, Task]
[16]9
10    static constraints = {
11        person()
[21]12        modificationType()
[16]13        task()
14        dateTime()
15        comments()
16    }
[18]17
18    static optionals = ["comments"]
[16]19}
Note: See TracBrowser for help on using the repository browser.