Changeset 21 for trunk/src/grails-app/domain
- Timestamp:
- Jan 19, 2009, 8:31:46 PM (16 years ago)
- Location:
- trunk/src/grails-app/domain
- Files:
-
- 3 added
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/grails-app/domain/Entry.groovy
r18 r21 8 8 static hasMany = [persons: Person] 9 9 10 static belongsTo = [ TypeOfEntry, Task, Person]10 static belongsTo = [EntryType, Task, Person] 11 11 12 12 static constraints = { -
trunk/src/grails-app/domain/Modification.groovy
r18 r21 1 1 class Modification { 2 2 Person person 3 TypeOfModification typeOfModification3 ModificationType modificationType 4 4 Task task 5 5 Date dateTime 6 6 String comments 7 7 8 static belongsTo = [Person, TypeOfModification, Task]8 static belongsTo = [Person, ModificationType, Task] 9 9 10 10 static constraints = { 11 11 person() 12 typeOfModification()12 modificationType() 13 13 task() 14 14 dateTime() -
trunk/src/grails-app/domain/Person.groovy
r19 r21 7 7 8 8 static hasMany = [modifications : Modification, 9 entries : Entry, tasks : Task, 9 entries : Entry, 10 tasks : Task, 10 11 personGroups : PersonGroup] 11 12 -
trunk/src/grails-app/domain/PersonGroup.groovy
r19 r21 1 1 class PersonGroup { 2 TypeOfPersonGroup typeOfPersonGroup2 PersonGroupType personGroupType 3 3 String name 4 4 String description = "" … … 7 7 static hasMany = [persons : Person] 8 8 9 static belongsTo = TypeOfPersonGroup9 static belongsTo = PersonGroup 10 10 11 11 String toString() {
Note: See TracChangeset
for help on using the changeset viewer.