- Timestamp:
- Jan 26, 2010, 10:48:51 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/studycapturing/Subject.groovy
r106 r136 8 8 class Subject { 9 9 10 String name 11 Term species 10 String name 11 Term species 12 Map templateStringFields 13 Map templateNumberFields 14 Map templateStringListFields 15 Map templateTermFields 12 16 13 static constraints = { 14 } 17 static hasMany = [ 18 templateStringFields : String, 19 templateNumberFields : float, 20 templateStringListFields : String, 21 templateTermFields : Term 22 ] 23 24 static constraints = { 25 } 15 26 }
Note: See TracChangeset
for help on using the changeset viewer.