Changeset 1277 for trunk/grails-app/domain
- Timestamp:
- Dec 16, 2010, 3:42:15 PM (12 years ago)
- Location:
- trunk/grails-app/domain/dbnp/importer
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/importer/ImportCell.groovy
r1202 r1277 18 18 */ 19 19 20 class ImportCell extends Identity {20 class ImportCell extends Identity implements Serializable { 21 21 MappingColumn mappingcolumn 22 22 int entityidentifier -
trunk/grails-app/domain/dbnp/importer/ImportMapping.groovy
r959 r1277 1 1 package dbnp.importer 2 2 3 class ImportMapping {3 class ImportMapping implements Serializable { 4 4 5 5 static hasMany = [columns: MappingColumn] -
trunk/grails-app/domain/dbnp/importer/ImportRecord.groovy
r1121 r1277 16 16 import dbnp.studycapturing.Identity 17 17 18 class ImportRecord extends Identity {18 class ImportRecord extends Identity implements Serializable { 19 19 static hasMany = [ importcells: ImportCell ] 20 20 -
trunk/grails-app/domain/dbnp/importer/MappingColumn.groovy
r1121 r1277 12 12 * identifier: true if this column is identifying (unique/primary key) 13 13 */ 14 class MappingColumn {14 class MappingColumn implements Serializable { 15 15 16 16 String name
Note: See TracChangeset
for help on using the changeset viewer.