Changeset 81 for trunk/grails-app/domain
- Timestamp:
- Jan 11, 2010, 10:33:01 AM (14 years ago)
- Location:
- trunk/grails-app/domain/dbnp/studycapturing
- Files:
-
- 5 added
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Event.groovy
r80 r81 3 3 class Event { 4 4 5 String name 5 Subject subject 6 EventDescription eventDescription 6 7 Date startTime 7 8 Date endTime 8 Term classification9 ProtocolInstance protocol10 11 static hasMany = [subjects: Subject]12 9 13 10 static constraints = { -
trunk/grails-app/domain/dbnp/studycapturing/ProtocolInstance.groovy
r80 r81 5 5 Protocol protocol 6 6 7 static hasMany = [stringParameters : String, numberParameters : double, listParameters: long] 7 // TODO: check how the values can be indexed so that they can be mapped to their respective parameters (should we should use maps here?) 8 static hasMany = [stringParameterValues : String, numberParameterValues : double, listParameterValues: long] 8 9 9 10 static constraints = {
Note: See TracChangeset
for help on using the changeset viewer.