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