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