Changeset 131 for trunk/grails-app/domain/Assembly.groovy
- Timestamp:
- May 8, 2009, 1:01:56 AM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/grails-app/domain/Assembly.groovy
r121 r131 1 1 class Assembly { 2 3 AssetType assetType 4 2 5 String name 3 6 String description = "" 4 7 boolean isActive = true 5 8 6 static hasMany = [ assetTypes: AssetType,subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction]9 static hasMany = [subAssemblies: SubAssembly, maintenanceActions: MaintenanceAction] 7 10 8 11 static belongsTo = [AssetType]
Note: See TracChangeset
for help on using the changeset viewer.