Changeset 245 for trunk/grails-app/domain
- Timestamp:
- Mar 8, 2010, 5:53:30 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/dbnp/importer/MappingColumn.groovy
r190 r245 1 1 package dbnp.importer 2 2 3 /** 4 * name: column name 5 * type: GCSF field type 6 * entity: GSCF entity class 7 * property: GSCF field property 8 * celltype: Excel cell type 9 * index: column index 10 * value: column value (optional, normally only name is used) 11 */ 3 12 class MappingColumn { 4 13 … … 7 16 Class entity 8 17 String property 18 Integer celltype 19 Integer index 20 String value 9 21 10 22 static constraints = { 11 23 name(unique: true) 12 24 } 25 26 String toString() { 27 return name + "/" + type + "/" + entity + "/" + property + "/" + celltype + "/" + index + "/" + value 28 } 13 29 }
Note: See TracChangeset
for help on using the changeset viewer.