source:
trunk/src/grails-app/domain/TaskModification.groovy
@
99
Last change on this file since 99 was 93, checked in by , 16 years ago | |
---|---|
File size: 378 bytes |
Rev | Line | |
---|---|---|
[93] | 1 | class TaskModification { |
[66] | 2 | Person person |
[93] | 3 | TaskModificationType taskModificationType |
[66] | 4 | Task task |
5 | Date date = new Date() | |
6 | String comment | |
7 | ||
[93] | 8 | static belongsTo = [Person, TaskModificationType, Task] |
[66] | 9 | |
10 | static constraints = { | |
11 | person() | |
[93] | 12 | taskModificationType() |
[66] | 13 | task() |
14 | date() | |
15 | comment() | |
16 | } | |
17 | ||
18 | static optionals = ["comment"] | |
19 | } |
Note: See TracBrowser
for help on using the repository browser.