source: trunk/src/grails-app/domain/Modification.groovy @ 16

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

Created grails app and init domain classes

File size: 327 bytes
Line 
1class Modification {
2    Person person
3    TypeOfModification typeOfModification
4    Task task
5    Date dateTime
6    String comments
7
8    static belongsTo = [Person, TypeOfModification, Task]
9
10    static constraints = {
11        person()
12        typeOfModification()
13        task()
14        dateTime()
15        comments()
16    }
17}
Note: See TracBrowser for help on using the repository browser.